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