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