pvtchat/types/auth.d.ts
2021-08-23 15:37:08 +01:00

10 lines
180 B
TypeScript

declare namespace Auth {
export interface Credentials {
email?: string;
password: string;
username: string;
}
export interface Payload {
userId: string;
}
}