icns-frontend/types/api-response.ts
2022-12-06 00:02:30 +09:00

15 lines
257 B
TypeScript

export interface TwitterAuthUrlResponse {
authUrl: string;
}
export interface TwitterAuthInfoResponse {
accessToken: string;
id: string;
username: string;
}
export interface IcnsVerificationResponse {
signature: number[];
algorithm: string;
}