Some checks failed
Build & Deploy / 🔍 Prepare (push) Successful in 20s
Build & Deploy / 🧪 QA (push) Failing after 34s
Build & Deploy / 🏗️ Build (push) Has started running
Build & Deploy / 🚀 Deploy (push) Has been cancelled
Build & Deploy / 🧪 Smoke Test (push) Has been cancelled
Build & Deploy / ⚡ Lighthouse (push) Has been cancelled
Build & Deploy / 🔔 Notify (push) Has been cancelled
16 lines
354 B
Plaintext
16 lines
354 B
Plaintext
interface ISize {
|
|
width: number;
|
|
height: number;
|
|
orientation?: number;
|
|
type?: string;
|
|
}
|
|
type ISizeCalculationResult = {
|
|
images?: ISize[];
|
|
} & ISize;
|
|
interface IImage {
|
|
validate: (input: Uint8Array) => boolean;
|
|
calculate: (input: Uint8Array) => ISizeCalculationResult;
|
|
}
|
|
|
|
export type { IImage, ISize, ISizeCalculationResult };
|