gatsby-plugin-utils
Version:
Gatsby utils that help creating plugins
17 lines (16 loc) • 566 B
TypeScript
import { transformImage } from "../transform-images";
export declare function FILE_CDN({ outputDir, args: { url, filename, contentDigest, httpHeaders }, }: {
outputDir: string;
args: {
url: string;
filename: string;
contentDigest: string;
httpHeaders: Record<string, string>;
};
}): Promise<void>;
export declare function IMAGE_CDN(args: {
outputDir: Parameters<typeof transformImage>[0]["outputDir"];
args: Parameters<typeof transformImage>[0]["args"] & {
contentDigest: string;
};
}): Promise<void>;