10 lines
180 B
TypeScript
10 lines
180 B
TypeScript
declare namespace Auth {
|
|
export interface Credentials {
|
|
email?: string;
|
|
password: string;
|
|
username: string;
|
|
}
|
|
export interface Payload {
|
|
userId: string;
|
|
}
|
|
} |