UNPKG

devkit-base-components

Version:

Devkit Base Components is a Vue plugin offering a collection of reusable, headless components designed to streamline your Vue.js development workflow. Built for flexibility and maintainability, this library gives you complete control over styling and beha

11 lines (10 loc) 299 B
import { Table } from 'dexie'; export declare class IconHelper { private readonly table; constructor(cacheTable: Table<{ key: string; value: string; }>); iconFind(key: string): Promise<string | undefined>; iconCreate(key: string, value: string): Promise<void>; }