38 lines
1.1 KiB
TypeScript
38 lines
1.1 KiB
TypeScript
/// <reference types="vite/client" />
|
|
|
|
interface OutputMetadata {
|
|
src: string; // URL of the generated image
|
|
width: number; // Width of the image
|
|
height: number; // Height of the image
|
|
format: string; // Format of the generated image
|
|
|
|
// The following options are the same as sharps input options
|
|
space: string; // Name of colour space interpretation
|
|
channels: number; // Number of bands e.g. 3 for sRGB, 4 for CMYK
|
|
density: number; // Number of pixels per inch
|
|
depth: string; // Name of pixel depth format
|
|
hasAlpha: boolean; // presence of an alpha transparency channel
|
|
hasProfile: boolean; // presence of an embedded ICC profile
|
|
isProgressive: boolean; // indicating whether the image is interlaced using a progressive scan
|
|
}
|
|
|
|
declare module "*&as=metadata" {
|
|
const outputs: OutputMetadata[];
|
|
export default outputs;
|
|
}
|
|
|
|
declare module "*&inline" {
|
|
const outputs: string;
|
|
export default outputs;
|
|
}
|
|
|
|
declare module "*.png" {
|
|
const outputs: string;
|
|
export default outputs;
|
|
}
|
|
|
|
declare module "*?as=metadata" {
|
|
const outputs: OutputMetadata[];
|
|
export default outputs;
|
|
}
|