Skip to content

Commit 672e344

Browse files
committed
Changes type of models and user in context
1 parent 7b18f13 commit 672e344

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/context.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ export const createExpressContext = (data, res) => {
1414
};
1515

1616
export class Context {
17-
models: any;
18-
user: any;
17+
models: Object;
18+
user: Object;
1919
constructor (data) {
2020
Object.keys(data).forEach(key => {
2121
this[key] = data[key]

0 commit comments

Comments
 (0)