6 lines
148 B
TypeScript
6 lines
148 B
TypeScript
|
|
type SessionStatus = {
|
||
|
|
type: string;
|
||
|
|
};
|
||
|
|
export declare function parseSessionStatusMap(data: unknown): Record<string, SessionStatus>;
|
||
|
|
export {};
|