UNPKG

nds-core

Version:

nds-core functionality for nds

16 lines (15 loc) 456 B
/** * Nds Core * @author Copyright(c) 2021 by Restu wahyu saputra * MIT Licensed */ export declare class NDSCore { set(items: any): Promise<boolean>; get(key: string): Promise<any>; remove(key: string): Promise<boolean>; clear(): Promise<boolean>; allKeys(): Promise<string[]>; exist(key: string): Promise<boolean | undefined>; keys(key: string): Promise<string | undefined>; match(): Promise<boolean>; }