@forge/bridge

6.0.0-next.36.0.0-next.4
out/modal/modal.d.ts
~out/modal/modal.d.tsModified
+3−3
Index: package/out/modal/modal.d.ts
===================================================================
--- package/out/modal/modal.d.ts
+++ package/out/modal/modal.d.ts
@@ -1,11 +1,11 @@
 declare const NAMED_MODAL_SIZES: readonly ["small", "medium", "large", "xlarge", "max", "fullscreen", "resizable"];
-declare type NamedModalSize = (typeof NAMED_MODAL_SIZES)[number];
-declare type CustomModalSize = {
+type NamedModalSize = (typeof NAMED_MODAL_SIZES)[number];
+type CustomModalSize = {
     width: string;
     height?: string;
 };
-export declare type ModalSizes = NamedModalSize | CustomModalSize;
+export type ModalSizes = NamedModalSize | CustomModalSize;
 export interface ModalOptions {
     resource?: string | null;
     onClose?: (payload: any) => any;
     size?: ModalSizes;