UNPKG

typescript-dotnet-core

Version:

A the core classes and utilities of a JavaScript-Friendly .NET Based TypeScript Library.

11 lines (10 loc) 373 B
/*! * @author electricessence / https://github.com/electricessence/ * Licensing: MIT */ import { Func } from "./FunctionTypes"; import Lazy from "./Lazy"; export default class ResettableLazy<T> extends Lazy<T> { constructor(valueFactory: Func<T>, trapExceptions?: boolean); static create<T>(valueFactory: Func<T>, trapExceptions?: boolean): ResettableLazy<T>; }