mirror of
https://github.com/kokonect-link/cherrypick
synced 2024-11-30 07:48:57 +09:00
[API] Fix #3097
This commit is contained in:
parent
a87c5899c5
commit
d48c25d2c9
@ -28,6 +28,8 @@ export default function <T extends IEndpointMeta>(meta: T, cb: (params: Params<T
|
||||
}
|
||||
|
||||
function getParams<T extends IEndpointMeta>(defs: T, params: any): [Params<T>, Error] {
|
||||
if (defs.params == null) return [params, null];
|
||||
|
||||
const x: any = {};
|
||||
let err: Error = null;
|
||||
Object.entries(defs.params).some(([k, def]) => {
|
||||
|
Loading…
Reference in New Issue
Block a user