Sanity Library Reference Docs
    Preparing search index...

    Interface PreviewStoreState

    This interface is kept for backwards compatibility but is no longer used internally. Preview state is now stored in the projection store.

    interface PreviewStoreState {
        subscriptions: {
            [key: string]: { [key: string]: true | undefined } | undefined;
        };
        values: { [key: string]: ValuePending<PreviewValue>
        | undefined };
    }
    Index

    Properties

    subscriptions: {
        [key: string]: { [key: string]: true | undefined } | undefined;
    }
    values: { [key: string]: ValuePending<PreviewValue> | undefined }