13 lines
236 B
Plaintext
13 lines
236 B
Plaintext
|
// @flow
|
||
|
|
||
|
declare export function createResizedImage(
|
||
|
uri: string,
|
||
|
width: number,
|
||
|
height: number,
|
||
|
format: 'PNG' | 'JPEG' | 'WEBP',
|
||
|
quality: number,
|
||
|
rotation?: number,
|
||
|
outputPath?: string
|
||
|
): Promise<string>;
|
||
|
|