@forge/bridge
5.17.0-experimental-04cc2b95.18.0-next.0
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';
-type ContentView = {
+declare type ContentView = {
target: typeof NavigationTarget.ContentView;
contentId: string;
version?: string;
};
-type ContentEdit = {
+declare type ContentEdit = {
target: typeof NavigationTarget.ContentEdit;
contentId: string;
};
-type SpaceView = {
+declare type SpaceView = {
target: typeof NavigationTarget.SpaceView;
spaceKey: string;
};
-type ContentList = {
+declare type ContentList = {
target: typeof NavigationTarget.ContentList;
contentType: 'page' | 'blogpost' | 'customContent';
} & ({
contentType: 'page' | 'blogpost';
@@ -21,29 +21,29 @@
} | {
contentType: 'customContent';
moduleKey: string;
});
-type Module = {
+declare type Module = {
target: typeof NavigationTarget.Module;
moduleKey: string;
spaceKey?: string;
projectKey?: string;
};
-type UserProfile = {
+declare type UserProfile = {
target: typeof NavigationTarget.UserProfile;
accountId: string;
};
-type Dashboard = {
+declare type Dashboard = {
target: typeof NavigationTarget.Dashboard;
dashboardId: string;
};
-type Issue = {
+declare type Issue = {
target: typeof NavigationTarget.Issue;
issueKey: string;
};
-type ProjectSettingsDetails = {
+declare type ProjectSettingsDetails = {
target: typeof NavigationTarget.ProjectSettingsDetails;
projectKey: string;
};
-export type NavigationLocation = ContentView | ContentEdit | SpaceView | UserProfile | ContentList | Module | Dashboard | Issue | ProjectSettingsDetails;
+export declare type NavigationLocation = ContentView | ContentEdit | SpaceView | UserProfile | ContentList | Module | Dashboard | Issue | ProjectSettingsDetails;
export {};
//# sourceMappingURL=types.d.ts.map
\ No newline at end of file