2022-12-05 11:01:24 +00:00
|
|
|
export interface TwitterAuthUrlResponse {
|
|
|
|
authUrl: string;
|
|
|
|
}
|
|
|
|
|
|
|
|
export interface TwitterAuthInfoResponse {
|
|
|
|
accessToken: string;
|
2022-12-05 11:48:09 +00:00
|
|
|
id: string;
|
|
|
|
username: string;
|
2022-12-05 11:01:24 +00:00
|
|
|
}
|
2022-12-05 14:16:02 +00:00
|
|
|
|
|
|
|
export interface IcnsVerificationInfoResponse {
|
|
|
|
signature: number[];
|
|
|
|
algorithm: string;
|
|
|
|
}
|