UNPKG

795 BTypeScriptView Raw
1export declare function assign<T, U>(obj: T, assignments: U): T & U;
2export declare function assign<T, U, V>(obj: T, a: U, b: V): T & U & V;
3export declare function assign<T, U, V, W>(obj: T, a: U, b: V, c: W): T & U & V & W;
4export declare function assign<T, U, V, W, X>(obj: T, a: U, b: V, c: W, d: X): T & U & V & W & X;
5export declare function assign<T, U, V, W, X, Y>(obj: T, a: U, b: V, c: W, d: X, e: Y): T & U & V & W & X & Y;
6export declare function assign<T, U, V, W, X, Y, Z>(obj: T, a: U, b: V, c: W, d: X, e: Y, f: Z): T & U & V & W & X & Y & Z;
7export declare function assign(target: any, ...args: any[]): any;
8export declare function fillNulls<T>(count: number): T[];
9export declare function values<T>(obj: {
10 [s: string]: T;
11}): T[];
12//# sourceMappingURL=object-utils.d.ts.map
\No newline at end of file