5 lines
197 B
TypeScript
5 lines
197 B
TypeScript
/**
|
|
* Make a property from the specified prototype enumerable on the specific instance.
|
|
*/
|
|
export declare function makeEnumerable(prototype: object, instance: object, propertyKey: string): void;
|