@forge/bridge

6.0.0-next.36.0.0-next.4
out/router/types.d.ts
~out/router/types.d.tsModified
+10−10
Index: package/out/router/types.d.ts
===================================================================
--- package/out/router/types.d.ts
+++ package/out/router/types.d.ts
@@ -1,19 +1,19 @@
 import { NavigationTarget } from './targets';
-declare type ContentView = {
+type ContentView = {
     target: typeof NavigationTarget.ContentView;
     contentId: string;
     version?: string;
 };
-declare type ContentEdit = {
+type ContentEdit = {
     target: typeof NavigationTarget.ContentEdit;
     contentId: string;
 };
-declare type SpaceView = {
+type SpaceView = {
     target: typeof NavigationTarget.SpaceView;
     spaceKey: string;
 };
-declare type ContentList = {
+type ContentList = {
     target: typeof NavigationTarget.ContentList;
     contentType: 'page' | 'blogpost' | 'customContent';
 } & ({
     contentType: 'page' | 'blogpost';
@@ -21,29 +21,29 @@
 } | {
     contentType: 'customContent';
     moduleKey: string;
 });
-declare type Module = {
+type Module = {
     target: typeof NavigationTarget.Module;
     moduleKey: string;
     spaceKey?: string;
     projectKey?: string;
 };
-declare type UserProfile = {
+type UserProfile = {
     target: typeof NavigationTarget.UserProfile;
     accountId: string;
 };
-declare type Dashboard = {
+type Dashboard = {
     target: typeof NavigationTarget.Dashboard;
     dashboardId: string;
 };
-declare type Issue = {
+type Issue = {
     target: typeof NavigationTarget.Issue;
     issueKey: string;
 };
-declare type ProjectSettingsDetails = {
+type ProjectSettingsDetails = {
     target: typeof NavigationTarget.ProjectSettingsDetails;
     projectKey: string;
 };
-export declare type NavigationLocation = ContentView | ContentEdit | SpaceView | UserProfile | ContentList | Module | Dashboard | Issue | ProjectSettingsDetails;
+export type NavigationLocation = ContentView | ContentEdit | SpaceView | UserProfile | ContentList | Module | Dashboard | Issue | ProjectSettingsDetails;
 export {};
 //# sourceMappingURL=types.d.ts.map
\ No newline at end of file