UNPKG

react-native-pdf-from-image

Version:
18 lines 455 B
import type { TurboModule } from 'react-native'; export type ImageObjectNative = { imagePaths: Array<string>; name: string; paperSize?: { height: number; width: number; }; }; export type File = { filePath: string; }; export interface Spec extends TurboModule { createPdf(imageObject: ImageObjectNative): File; } declare const _default: Spec; export default _default; //# sourceMappingURL=NativePdfFromImage.d.ts.map