uni-ticket-system/node_modules/@jimp/plugin-flip/index.d.ts

9 lines
260 B
TypeScript
Raw Normal View History

2023-12-05 02:11:10 +00:00
import { ImageCallback } from '@jimp/core';
interface Flip {
flip(horizontal: boolean, vertical: boolean, cb?: ImageCallback<this>): this;
mirror(horizontal: boolean, vertical: boolean, cb?: ImageCallback<this>): this;
}
export default function(): Flip;