icns-frontend/types/twitter.ts

11 lines
231 B
TypeScript
Raw Normal View History

2022-12-14 11:36:08 +00:00
import { TwitterAuthInfoResponse } from "./api-response";
export interface TwitterProfileType extends TwitterAuthInfoResponse {
isRegistered: boolean;
}
2022-12-15 06:02:50 +00:00
export interface TwitterLoginSuccess {
code: string;
state: string;
}