icns-frontend/types/api-response.ts

10 lines
166 B
TypeScript
Raw Normal View History

2022-12-05 11:01:24 +00:00
export interface TwitterAuthUrlResponse {
authUrl: string;
}
export interface TwitterAuthInfoResponse {
accessToken: string;
id: string;
username: string;
2022-12-05 11:01:24 +00:00
}