forked from LaconicNetwork/icns-frontend
15 lines
257 B
TypeScript
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;
|
|
}
|