6 lines
99 B
TypeScript
6 lines
99 B
TypeScript
export interface ServerContext {
|
|
id: string;
|
|
}
|
|
|
|
export const context: ServerContext = {} as any;
|