Coda by Ian Macalinao
    Preparing search index...

    Interface PostOffsetTypeNode<TType>

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

    interface PostOffsetTypeNode<TType extends TypeNode = TypeNode> {
        kind: "postOffsetTypeNode";
        offset: number;
        strategy: PostOffsetStrategy;
        type: TType;
    }

    Type Parameters

    Index
    kind: "postOffsetTypeNode"
    offset: number

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

    How the offset value is interpreted.

    type: TType

    The wrapped type whose serialisation is followed by the offset.