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.
13 lines
408 B
13 lines
408 B
import { Typed } from "../typed.js"; |
|
import { Coder } from "./abstract-coder.js"; |
|
import type { Reader, Writer } from "./abstract-coder.js"; |
|
/** |
|
* @_ignore |
|
*/ |
|
export declare class AddressCoder extends Coder { |
|
constructor(localName: string); |
|
defaultValue(): string; |
|
encode(writer: Writer, _value: string | Typed): number; |
|
decode(reader: Reader): any; |
|
} |
|
//# sourceMappingURL=address.d.ts.map
|