edgekitjs - v0.0.51
    Preparing search index...

    Interface Output<T, M>

    interface Output<T, M = unknown> {
        data: null | T;
        meta: null | M;
    }

    Type Parameters

    • T
    • M = unknown
    Index

    Properties

    Properties

    data: null | T

    The value stored along the key. It will be null if the key was not found.

    meta: null | M

    The metadata stored along the key.