import { GuidValue } from "@omnia/fx-models"; import { NavigationData } from "./NavigationData"; import { NavigationNode } from "./NavigationNode"; export interface MovePageCollectionResult { /** * The Ids of pages which are moved * **/ affectedPageIds: Array; /** * The navigation nodes which are moved * **/ affectedNodes: Array>; /** * The moving tracking id * **/ movePageTrackingId?: GuidValue; }