Coda by Ian Macalinao
    Preparing search index...

    Interface PreOffsetTypeNode<TType>

    Before serialising the wrapped type, advance the cursor by offset bytes interpreted via the chosen strategy.

    interface PreOffsetTypeNode<TType extends TypeNode = TypeNode> {
        kind: "preOffsetTypeNode";
        offset: number;
        strategy: PreOffsetStrategy;
        type: TType;
    }

    Type Parameters

    Index
    kind: "preOffsetTypeNode"
    offset: number

    The signed byte offset to apply before the wrapped type runs.

    How the offset value is interpreted.

    type: TType

    The wrapped type whose serialisation is preceded by the offset.