graphdb-workbench
Version:
The web application for GraphDB APIs
18 lines (17 loc) • 385 B
TypeScript
/**
* Represents the payload for a navigation end event.
*/
export declare class NavigationEndPayload {
/**
* The URL from which the navigation originated.
*
* @type {string | undefined}
*/
oldUrl: string | undefined;
/**
* The URL to which the navigation ended.
*
* @type {string | undefined}
*/
newUrl: string | undefined;
}