icns-frontend/types/api-response.ts

15 lines
257 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
}
2022-12-05 15:02:30 +00:00
export interface IcnsVerificationResponse {
signature: number[];
algorithm: string;
}