diff --git a/typescript/core/base.ts b/typescript/core/base.ts index 137f6c2da..5cc0a010c 100644 --- a/typescript/core/base.ts +++ b/typescript/core/base.ts @@ -178,7 +178,7 @@ export interface _base { functions: (object: object) => string[]; extend(object: T): T; - extend(object: T, ...sources: U[]): T & UnionToIntersection>; + extend(object: T, ...sources: U): T & UnionToIntersection>; defaults: (object: object, ...sources: any[]) => object;