graphdb-workbench
Version:
The web application for GraphDB APIs
14 lines (13 loc) • 415 B
TypeScript
/**
* A constant object that defines event names used throughout the {@link EventService}.
*
* This object acts as a central repository for all predefined event names, ensuring consistency
* when emitting and subscribing to events in the {@link EventService}.
*
*/
export declare const EventName: {
NAVIGATION_END: string;
NAVIGATION_START: string;
LOGOUT: string;
APP_DATA_LOADED: string;
};