You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
blockvote/node_modules/@ethersproject/abi/lib.esm/coders/string.d.ts

9 lines
340 B

import { Reader, Writer } from "./abstract-coder";
import { DynamicBytesCoder } from "./bytes";
export declare class StringCoder extends DynamicBytesCoder {
constructor(localName: string);
defaultValue(): string;
encode(writer: Writer, value: any): number;
decode(reader: Reader): any;
}
//# sourceMappingURL=string.d.ts.map