/** * Custom event name for loading a file in the editor. * * Expects a {@link FileData} as the event details. */ export declare const EVENT_FILE_LOAD = "live.file.load"; /** * Custom event name for finished a file load in the editor. */ export declare const EVENT_FILE_LOAD_COMPLETE = "live.file.load.complete"; /** * Custom event name for creating a new file in the editor. * * Expects a {@link FileData} as the event details. */ export declare const EVENT_FILE_CREATE = "live.file.create"; /** * Custom event name for saveing a file in the editor. * * Expects a {@link FileData} as the event details. */ export declare const EVENT_FILE_SAVE = "live.file.save"; /** * Custom event name for finished a file save in the editor. */ export declare const EVENT_FILE_SAVE_COMPLETE = "live.file.save.complete"; /** * Custom event name for adding a notification. * * Expects a {@link EditorNotification} as the event details. */ export declare const EVENT_NOTIFICATION_ADD = "live.notification.add"; /** * Custom event name for marking a notification as read. * * Expects a {@link EditorNotification} as the event details. */ export declare const EVENT_NOTIFICATION_READ = "live.notification.read"; /** * Custom event name for opening a notification. * * Expects a {@link EditorNotification} as the event details. */ export declare const EVENT_NOTIFICATION_SHOW = "live.notification.show"; /** * Custom event name for triggering an update of the onboarding * info. */ export declare const EVENT_ONBOARDING_UPDATE = "live.onboarding.update"; /** * Custom event name for when the editor wants to refresh the file. */ export declare const EVENT_REFRESH_FILE = "live.refresh.file"; /** * Custom event name for when the editor wants to refresh the preview. */ export declare const EVENT_REFRESH_PREVIEW = "live.refresh.preview"; /** * Custom event name for triggering a render. */ export declare const EVENT_RENDER = "live.render"; /** * Custom event after a render completes. */ export declare const EVENT_RENDER_COMPLETE = "live.render.complete"; /** * Custom event to save the current data. * * This is triggered when the user uses cmd+s. */ export declare const EVENT_SAVE = "live.save"; /** * Custom event name for opening a toast. * * Expects a {@link ToastConfig} as the event details. */ export declare const EVENT_TOAST_SHOW = "live.toast.show"; /** * Custom event for loading a workspace. * * Expects a {@link WorkspaceData} as the event details. */ export declare const EVENT_WORKSPACE_LOAD = "live.workspace.load";