6 lines
60 B
TypeScript
6 lines
60 B
TypeScript
export interface IContext {
|
|
user?: {
|
|
id: number
|
|
}
|
|
}
|