expo-image-manipulator
Version:
Provides functions that let you manipulation images on the local file system, eg: resize, crop.
12 lines • 597 B
TypeScript
import { NativeModule } from 'expo';
import { SharedRef } from 'expo-modules-core/types';
import ImageManipulatorContext from './web/ImageManipulatorContext.web';
import ImageManipulatorImageRef from './web/ImageManipulatorImageRef.web';
declare class ImageManipulator extends NativeModule {
Context: typeof ImageManipulatorContext;
Image: typeof ImageManipulatorImageRef;
manipulate(source: string | SharedRef<'image'>): ImageManipulatorContext;
}
declare const _default: typeof ImageManipulator;
export default _default;
//# sourceMappingURL=NativeImageManipulatorModule.web.d.ts.map