Sanity App SDK
    Preparing search index...

    Interface ClientState

    States tracked by the client store

    interface ClientState {
        authMethod?: "localstorage" | "cookie";
        clients: { [key: string]: undefined | SanityClient };
        token: null | string;
    }
    Index

    Properties

    authMethod?: "localstorage" | "cookie"
    clients: { [key: string]: undefined | SanityClient }
    token: null | string