Files
bunext/dist/functions/cache/trim-cache-key.d.ts
T
2026-03-21 06:34:32 +01:00

7 lines
185 B
TypeScript

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