6 lines
120 B
TypeScript
6 lines
120 B
TypeScript
export type AuthSessionType = 'WarrenAuth';
|
|
export interface AuthSession {
|
|
type: AuthSessionType;
|
|
id: string;
|
|
}
|