diff --git a/NuGet.config b/NuGet.config
new file mode 100644
index 0000000..fe459fe
--- /dev/null
+++ b/NuGet.config
@@ -0,0 +1,11 @@
+
+
+
+
+
+
+
+
+
+
+
diff --git a/codegenSpecs/NativeRNPrint.js b/codegenSpecs/NativeRNPrint.js
new file mode 100644
index 0000000..267770b
--- /dev/null
+++ b/codegenSpecs/NativeRNPrint.js
@@ -0,0 +1,16 @@
+// @flow
+import type { TurboModule } from 'react-native/Libraries/TurboModule/RCTExport';
+import { TurboModuleRegistry } from 'react-native';
+
+export type RNPrintOptions = {
+ html?: string,
+ filePath?: string,
+ isLandscape?: boolean,
+ jobName: string,
+};
+
+export interface Spec extends TurboModule {
+ +print: (options: RNPrintOptions) => Promise