client-aftermath-ts-sdk
Version:
Client Aftermath TypeScript SDK
36 lines • 753 B
TypeScript
import { SuiAddress, Timestamp } from "../../types";
export interface RateLimit {
p: string;
m: {
GET: {
l: number;
};
} | {
POST: {
l: number;
};
} | {
GET: {
l: number;
};
POST: {
l: number;
};
};
}
export interface ApiCreateAuthAccountBody {
walletAddress: SuiAddress;
signature: string;
serializedJson: string;
}
export interface ApiGetAccessTokenBody {
walletAddress: SuiAddress;
signature: string;
serializedJson: string;
}
export interface ApiGetAccessTokenResponse {
accessToken: string;
header: string;
expirationTimestamp: Timestamp;
}
//# sourceMappingURL=authTypes.d.ts.map