Spaces:
Configuration error
Configuration error
File size: 269 Bytes
5641073 |
1 2 3 4 5 6 7 8 9 10 11 |
/**
* @author jdiaz5513
*/
import { _ListCtor, List } from "./list";
export declare class BoolList extends List<boolean> {
static readonly _capnp: _ListCtor;
get(index: number): boolean;
set(index: number, value: boolean): void;
toString(): string;
}
|