@forge/bridge

5.17.0-experimental-04cc2b95.18.0-next.0
out/permissions/permissionsUtil.d.ts
~out/permissions/permissionsUtil.d.tsModified
+3−3
Index: package/out/permissions/permissionsUtil.d.ts
===================================================================
--- package/out/permissions/permissionsUtil.d.ts
+++ package/out/permissions/permissionsUtil.d.ts
@@ -3,14 +3,14 @@
 /**
  * Resource types that can be loaded externally
  */
 declare const RESOURCE_TYPES: readonly ["fonts", "styles", "frames", "images", "media", "scripts"];
-export type ResourceType = (typeof RESOURCE_TYPES)[number];
+export declare type ResourceType = (typeof RESOURCE_TYPES)[number];
 /**
  * Fetch types for external requests
  */
 declare const FETCH_TYPES: readonly ["backend", "client"];
-export type FetchType = (typeof FETCH_TYPES)[number];
+export declare type FetchType = (typeof FETCH_TYPES)[number];
 /**
  * Required permissions for checking
  */
 export interface PermissionRequirements {
@@ -31,9 +31,9 @@
 }
 /**
  * Missing permissions information
  */
-export type MissingPermissions = PermissionRequirements;
+export declare type MissingPermissions = PermissionRequirements;
 /**
  * Permission check result
  */
 export interface PermissionCheckResult {