AppleSauce
    Preparing search index...
    interface Couch {
        clear(): void | Promise<void>;
        getAll(): Token[] | Promise<Token[]>;
        store(token: Token): ClearMethod | Promise<ClearMethod>;
    }

    Implemented by

    Index

    Methods

    • Get all tokens currently stored in the couch

      Returns Token[] | Promise<Token[]>

    • Store a token in the couch

      Parameters

      • token: Token

      Returns ClearMethod | Promise<ClearMethod>