diff options
author | Sam Wilkins <samwilkins333@gmail.com> | 2019-09-28 03:58:30 -0400 |
---|---|---|
committer | Sam Wilkins <samwilkins333@gmail.com> | 2019-09-28 03:58:30 -0400 |
commit | 9774aeeef8d2ce85ebfecabdd3acd6d045a222e8 (patch) | |
tree | 62eea7f6d1284fc4c392f9266c9e773b7c557d50 /src | |
parent | 7f959fc271ea66b78fe308fb2e449e3019cdb254 (diff) |
small fix
Diffstat (limited to 'src')
-rw-r--r-- | src/client/DocServer.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/DocServer.ts b/src/client/DocServer.ts index e48654372..2cec1046b 100644 --- a/src/client/DocServer.ts +++ b/src/client/DocServer.ts @@ -188,7 +188,7 @@ export namespace DocServer { } }; - let _GetRefField: (id: string, mongoCollection?: string) => Promise<Opt<RefField>> = errorFunc; + let _GetRefField: (id: string) => Promise<Opt<RefField>> = errorFunc; export function GetRefField(id: string): Promise<Opt<RefField>> { return _GetRefField(id); |