icns-frontend/types/api-response.ts

15 lines
261 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
}
export interface IcnsVerificationInfoResponse {
signature: number[];
algorithm: string;
}