| 3 | export const sharp = sharpModule |
| 4 | |
| 5 | interface NativeModule { |
| 6 | hasClipboardImage(): boolean |
| 7 | readClipboardImage( |
| 8 | maxWidth?: number, |
| 9 | maxHeight?: number, |
| 10 | ): { |
| 11 | png: Buffer |
| 12 | width: number |
| 13 | height: number |
| 14 | originalWidth: number |
| 15 | originalHeight: number |
| 16 | } | null |
| 17 | } |
| 18 | |
| 19 | function createDarwinNativeModule(): NativeModule { |
| 20 | return { |
nothing calls this directly
no outgoing calls
no test coverage detected