You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
46 lines
2.4 KiB
46 lines
2.4 KiB
export declare const assign: {
|
|
<T extends {}, U>(target: T, source: U): T & U;
|
|
<T_1 extends {}, U_1, V>(target: T_1, source1: U_1, source2: V): T_1 & U_1 & V;
|
|
<T_2 extends {}, U_2, V_1, W>(target: T_2, source1: U_2, source2: V_1, source3: W): T_2 & U_2 & V_1 & W;
|
|
(target: object, ...sources: any[]): any;
|
|
};
|
|
export declare const getDescriptor: (o: any, p: PropertyKey) => PropertyDescriptor | undefined;
|
|
export declare const defineProperty: <T>(o: T, p: PropertyKey, attributes: PropertyDescriptor & ThisType<any>) => T;
|
|
export declare const objectPrototype: Object;
|
|
export declare const EMPTY_ARRAY: never[];
|
|
export declare const EMPTY_OBJECT: {};
|
|
export interface Lambda {
|
|
(): void;
|
|
name?: string;
|
|
}
|
|
export declare function assertProxies(): void;
|
|
export declare function warnAboutProxyRequirement(msg: string): void;
|
|
export declare function getNextId(): number;
|
|
/**
|
|
* Makes sure that the provided function is invoked at most once.
|
|
*/
|
|
export declare function once(func: Lambda): Lambda;
|
|
export declare const noop: () => void;
|
|
export declare function isFunction(fn: any): fn is Function;
|
|
export declare function isString(value: any): value is string;
|
|
export declare function isStringish(value: any): value is string | number | symbol;
|
|
export declare function isObject(value: any): value is Object;
|
|
export declare function isPlainObject(value: any): boolean;
|
|
export declare function isGenerator(obj: any): boolean;
|
|
export declare function addHiddenProp(object: any, propName: PropertyKey, value: any): void;
|
|
export declare function addHiddenFinalProp(object: any, propName: PropertyKey, value: any): void;
|
|
export declare function createInstanceofPredicate<T>(name: string, theClass: new (...args: any[]) => T): (x: any) => x is T;
|
|
export declare function isES6Map(thing: any): thing is Map<any, any>;
|
|
export declare function isES6Set(thing: any): thing is Set<any>;
|
|
/**
|
|
* Returns the following: own enumerable keys and symbols.
|
|
*/
|
|
export declare function getPlainObjectKeys(object: any): (string | symbol)[];
|
|
export declare const ownKeys: (target: any) => Array<string | symbol>;
|
|
export declare function stringifyKey(key: any): string;
|
|
export declare function toPrimitive(value: any): any;
|
|
export declare function hasProp(target: Object, prop: PropertyKey): boolean;
|
|
export declare const getOwnPropertyDescriptors: <T>(o: T) => { [P in keyof T]: TypedPropertyDescriptor<T[P]>; } & {
|
|
[x: string]: PropertyDescriptor;
|
|
};
|