UNPKG

@crumbjs/core

Version:

<img src="https://raw.githubusercontent.com/tuplescompany/crumbjs/refs/heads/main/logo/crumbjs.png" alt="CrumbJS Logo" width="200"/> - The tasty way to build fast apis.

8 lines (7 loc) 275 B
import { APIConfig } from './types'; export declare const config: { all: APIConfig; get: <K extends keyof APIConfig>(key: K) => APIConfig[K]; set: <K extends keyof APIConfig>(key: K, value: APIConfig[K]) => void; merge: (data: Partial<APIConfig>) => void; };