Type Alias WritableValueBuilder<T, Ctx>

WritableValueBuilder: {
    proxy?: undefined;
    size: number;
    read(opts: ValueBuilderOptions, ctx: Ctx): T;
    write(value: T, opts: ValueBuilderOptions, ctx: Ctx): void;
}

Type Parameters

  • T
  • Ctx extends Record<string, unknown> = Record<string, unknown>

Type declaration