/** * The IDL of the module. * * @module */ /** The IDL of the module. */ export declare const idl: { readonly module_id: "0x1::string"; readonly doc: "The `string` module defines the `String` type which represents UTF8 encoded strings."; readonly functions: readonly []; readonly structs: readonly [{ readonly name: "0x1::string::String"; readonly doc: "A `String` holds a sequence of bytes which is guaranteed to be in utf8 format."; readonly fields: readonly [{ readonly name: "bytes"; readonly ty: { readonly vector: "u8"; }; }]; readonly abilities: readonly ["copy", "drop", "store"]; }]; readonly errors: { readonly "1": { readonly name: "EINVALID_UTF8"; readonly doc: "An invalid UTF8 encoding."; }; readonly "2": { readonly name: "EINVALID_INDEX"; readonly doc: "Index out of range."; }; }; }; //# sourceMappingURL=idl.d.ts.map