/** * @internal */ export class LazyArg { #get: () => Promise; constructor(get: () => Promise) { this.#get = get; } get(): Promise { return this.#get(); } }