UNPKG

jsstore

Version:

Harness the power of JsStore to streamline database operations in your web applications. With its SQL-like API, JsStore simplifies IndexedDB interactions, enabling developers to easily query, filter, and manipulate data with familiar syntax and efficiency

15 lines (14 loc) 334 B
import { IError } from "@/common"; export declare class LogHelper implements IError { type: string; message: string; private info_; status: boolean; log(msg: any): void; constructor(type: string, info?: any); throw(): void; logError(): void; get(): IError; warn(): void; private getMsg_; }