weasel API - v0.8.0
    Preparing search index...

    Interface SerializedHistoryEntry

    Wire form of one history entry. forwardOps / baseOps mirror the in-memory entry's fields (see Entry above) but only carry the serializable (name, args) projection of each op.

    interface SerializedHistoryEntry {
        baseOps: SerializedOp[];
        forwardOps: SerializedOp[];
        id: number;
        label: string;
    }
    Index

    Properties

    baseOps: SerializedOp[]
    forwardOps: SerializedOp[]
    id: number
    label: string