mirror of
https://github.com/status-im/react-native-image-resizer.git
synced 2025-02-18 17:47:48 +00:00
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>;
|
||
|
|