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