src/utils/enums/responses/signals.enum.ts
Properties |
| LOG_OUT |
LOG_OUT:
|
Type : literal type
|
| LOG_OUT_EXPIRED |
LOG_OUT_EXPIRED:
|
Type : literal type
|
| PROMPT_DISCORD_PASS |
PROMPT_DISCORD_PASS:
|
Type : literal type
|
| SET_AUTH_COOKIE |
SET_AUTH_COOKIE:
|
Type : literal type
|
export interface Signals {
SET_AUTH_COOKIE: { cookie: string };
LOG_OUT_EXPIRED: {};
LOG_OUT: { reason?: string };
PROMPT_DISCORD_PASS: { cbCode: string; dId: string };
}