Spaces:
Running
Running
File size: 292 Bytes
78c921d |
1 2 3 4 5 6 7 8 |
import { Bool } from '../type.js';
import { Builder, BuilderOptions } from '../builder.js';
/** @ignore */
export declare class BoolBuilder<TNull = any> extends Builder<Bool, TNull> {
constructor(options: BuilderOptions<Bool, TNull>);
setValue(index: number, value: boolean): void;
}
|