@forge/bridge
5.17.0-experimental-04cc2b95.18.0-next.0
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"];
-type NamedModalSize = (typeof NAMED_MODAL_SIZES)[number];
-type CustomModalSize = {
+declare type NamedModalSize = (typeof NAMED_MODAL_SIZES)[number];
+declare type CustomModalSize = {
width: string;
height?: string;
};
-export type ModalSizes = NamedModalSize | CustomModalSize;
+export declare type ModalSizes = NamedModalSize | CustomModalSize;
export interface ModalOptions {
resource?: string | null;
onClose?: (payload: any) => any;
size?: ModalSizes;