UNPKG

unstorage

Version:
6 lines (5 loc) 263 B
import type { Driver } from "../../types"; type DriverFactory<T> = (opts?: T) => Driver; export declare function defineDriver<T = any>(factory: DriverFactory<T>): DriverFactory<T>; export declare function normalizeKey(key: string | undefined): string; export {};