/** * **Module ID:** `0x1::bit_vector` * * @module */ import type * as p from "@movingco/prelude"; /** Type name: `0x1::bit_vector::BitVector` */ export interface IBitVector { length: p.U64; bit_field: ReadonlyArray; } export { idl } from "./idl.js"; /** The address of the module. */ export declare const ADDRESS: "0x1"; /** The full module name. */ export declare const FULL_NAME: "0x1::bit_vector"; /** The name of the module. */ export declare const NAME: "bit_vector"; /** Module ID information. */ export declare const id: { readonly ADDRESS: "0x1"; readonly FULL_NAME: "0x1::bit_vector"; readonly NAME: "bit_vector"; }; export * as errors from "./errors.js"; /** Module error codes. */ export declare const errorCodes: { readonly "131072": { readonly name: "EINDEX"; readonly doc: "The provided index is out of bounds"; }; readonly "131073": { readonly name: "ELENGTH"; readonly doc: "An invalid length of bitvector was given"; }; }; /** All module function IDLs. */ export declare const functions: {}; /** All struct types with ability `key`. */ export declare const resources: {}; /** All struct types. */ export declare const structs: { readonly BitVector: "0x1::bit_vector::BitVector"; }; export declare const moduleDefinition: { readonly errorCodes: { readonly "131072": { readonly name: "EINDEX"; readonly doc: "The provided index is out of bounds"; }; readonly "131073": { readonly name: "ELENGTH"; readonly doc: "An invalid length of bitvector was given"; }; }; readonly functions: {}; readonly resources: {}; readonly structs: { readonly BitVector: "0x1::bit_vector::BitVector"; }; readonly ADDRESS: "0x1"; readonly FULL_NAME: "0x1::bit_vector"; readonly NAME: "bit_vector"; }; //# sourceMappingURL=index.d.ts.map