export type FilePath = string; export type AwaitReturnType Promise> = Awaited>; export type CacheGeneratorParams = { source: string | Buffer; bucket: string; key: string; contentType: string; fileName: string; fileContents: Buffer | string; }; export type CacheGenerator = (params: CacheGeneratorParams) => string;