@forge/bridge

6.0.0-next.36.0.0-next.4
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 declare type ResourceType = (typeof RESOURCE_TYPES)[number];
+export type ResourceType = (typeof RESOURCE_TYPES)[number];
 /**
  * Fetch types for external requests
  */
 declare const FETCH_TYPES: readonly ["backend", "client"];
-export declare type FetchType = (typeof FETCH_TYPES)[number];
+export type FetchType = (typeof FETCH_TYPES)[number];
 /**
  * Required permissions for checking
  */
 export interface PermissionRequirements {
@@ -31,9 +31,9 @@
 }
 /**
  * Missing permissions information
  */
-export declare type MissingPermissions = PermissionRequirements;
+export type MissingPermissions = PermissionRequirements;
 /**
  * Permission check result
  */
 export interface PermissionCheckResult {