dungeon-sdk-drikkx
Version:
Shared types and entities for the Dungeon game
16 lines • 331 B
TypeScript
export interface LoginDto {
walletAddress: string;
signature: string;
}
export interface AuthResponse {
accessToken: string;
user: UserDto;
}
export interface UserDto {
id: number;
walletAddress: string;
nonce: string;
createdAt: Date;
updatedAt: Date;
}
//# sourceMappingURL=auth.types.d.ts.map