typescript-dotnet-core
Version:
A the core classes and utilities of a JavaScript-Friendly .NET Based TypeScript Library.
15 lines (11 loc) • 392 B
TypeScript
/*!
* @author electricessence / https://github.com/electricessence/
* Licensing: MIT https://github.com/electricessence/TypeScript.NET-Core/blob/master/LICENSE.md
*/
import IDisposable from "./Disposable/IDisposable";
import IEquatable from "./IEquatable";
export default interface ILazy<T> extends IDisposable, IEquatable<ILazy<T>>
{
value:T;
isValueCreated:boolean;
}