Spaces:
Sleeping
Sleeping
File size: 637 Bytes
be5030f |
1 2 3 4 5 6 7 8 9 10 11 12 13 |
import { Bool } from '../type';
import { Chunked } from './chunked';
import { BaseVector } from './base';
import { VectorBuilderOptions } from './index';
import { VectorBuilderOptionsAsync } from './index';
/** @ignore */
export declare class BoolVector extends BaseVector<Bool> {
static from<TNull = any>(input: Iterable<boolean | TNull>): BoolVector;
static from<TNull = any>(input: AsyncIterable<boolean | TNull>): Promise<BoolVector>;
static from<TNull = any>(input: VectorBuilderOptions<Bool, TNull>): Chunked<Bool>;
static from<TNull = any>(input: VectorBuilderOptionsAsync<Bool, TNull>): Promise<Chunked<Bool>>;
}
|