mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
15 lines
421 B
TypeScript
15 lines
421 B
TypeScript
// Type definitions for lazy-property 1.0
|
|
// Project: https://github.com/mikolalysenko/lazy-property
|
|
// Definitions by: Jan Kühnlein <https://github.com/jank1310>
|
|
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
|
// TypeScript Version: 2.2
|
|
|
|
declare function addLazyProperty(
|
|
object: object,
|
|
name: string,
|
|
initializer: () => any,
|
|
enumerable?: boolean,
|
|
): void;
|
|
|
|
export = addLazyProperty;
|