@grandlinex/core
    Preparing search index...

    Interface IBaseDBUpdate

    interface IBaseDBUpdate {
        find(version: string): IBaseDBUpdate | null;
        getDb(): IDataBase<any, any>;
        getSource(): string;
        perform(): Promise<boolean>;
        setNext(db: IBaseDBUpdate): void;
        update(): Promise<boolean>;
        updateNext(): Promise<boolean>;
    }

    Implemented by

    Index

    Methods

    • Returns Promise<boolean>