From 1e942651fbaaf07fc66c159225fbc992a0174bf4 Mon Sep 17 00:00:00 2001 From: Shihab Mridha <3264156+shihabmridha@users.noreply.github.com> Date: Mon, 9 Nov 2020 00:16:56 +0600 Subject: [PATCH] fix(typescript): Add user property to the Params. (#2090) --- packages/feathers/index.d.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/packages/feathers/index.d.ts b/packages/feathers/index.d.ts index acadc628fe..0c31c9e7ca 100644 --- a/packages/feathers/index.d.ts +++ b/packages/feathers/index.d.ts @@ -42,6 +42,7 @@ declare namespace createApplication { provider?: string; route?: {[key: string]: string}; headers?: {[key: string]: any}; + user?: {[key: string]: any}; [key: string]: any; // (JL) not sure if we want this }