icns-frontend/types/twitter.ts
2022-12-15 15:02:50 +09:00

11 lines
231 B
TypeScript

import { TwitterAuthInfoResponse } from "./api-response";
export interface TwitterProfileType extends TwitterAuthInfoResponse {
isRegistered: boolean;
}
export interface TwitterLoginSuccess {
code: string;
state: string;
}