icns-frontend/types/api-response.ts

15 lines
261 B
TypeScript

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