## lazy-val Lazy value. ```typescript class Lazy { constructor(creator: () => Promise) readonly hasValue: boolean value: Promise } ```