bunext/dist/functions/cache/get-cache.d.ts

7 lines
160 B
TypeScript

type Params = {
key: string;
paradigm?: "html" | "json";
};
export default function getCache({ key, paradigm }: Params): string | undefined;
export {};