6 lines
59 B
TypeScript
6 lines
59 B
TypeScript
export interface Context {
|
|
user?: {
|
|
id: number
|
|
}
|
|
}
|