@forge/jira-bridge

0.40.0-next.0-experimental-90651450.40.0-next.1
out/custom-field/types.d.ts
out/custom-field/types.d.ts
+13
Index: package/out/custom-field/types.d.ts
===================================================================
--- package/out/custom-field/types.d.ts
+++ package/out/custom-field/types.d.ts
@@ -0,0 +1,13 @@
+export declare type FieldData = {
+    fieldValue: unknown;
+};
+export interface CustomFieldInternalAPI {
+    actions: {
+        onFieldDataChange: (callback: (fieldData: FieldData) => void) => void;
+        onBridgeError?: (payload: {
+            error: string;
+            cause: unknown;
+        }) => void;
+    };
+}
+//# sourceMappingURL=types.d.ts.map
\ No newline at end of file