bunext/dist/functions/cache/trim-cache-key.d.ts

7 lines
185 B
TypeScript

import type { APIResponseObject } from "../../types";
type Params = {
key: string;
};
export default function trimCacheKey({ key, }: Params): Promise<APIResponseObject>;
export {};