interface EntryTreesPoi {
    deserialize: (value: Buffer) => EntUnpacked & { tag: TreesPoi };
    recursiveType: true;
    serialize: (
        value:
            | Uint8Array
            | `tx_${string}`
            | (EntParams & { tag: EntryTag.TreesPoi; }),
    ) => Buffer;
}

Properties

deserialize: (value: Buffer) => EntUnpacked & { tag: TreesPoi }
recursiveType: true
serialize: (
    value:
        | Uint8Array
        | `tx_${string}`
        | (EntParams & { tag: EntryTag.TreesPoi; }),
) => Buffer