hadron-document
Version:
Hadron Document
22 lines • 1.03 kB
TypeScript
/**
* The event constant.
*/
export declare const DocumentEvents: {
readonly Cancel: "Document::Cancel";
readonly Expanded: "Document::Expanded";
readonly Collapsed: "Document::Collapsed";
readonly VisibleElementsChanged: "Document::VisibleElementsChanged";
readonly EditingStarted: "Document::EditingStarted";
readonly EditingFinished: "Document::EditingFinished";
readonly MarkedForDeletion: "Document::MarkedForDeletion";
readonly DeletionFinished: "Document::DeletionFinished";
readonly UpdateStarted: "Document::UpdateStarted";
readonly UpdateSuccess: "Document::UpdateSuccess";
readonly UpdateBlocked: "Document::UpdateBlocked";
readonly UpdateError: "Document::UpdateError";
readonly RemoveStarted: "Document::RemoveStarted";
readonly RemoveSuccess: "Document::RemoveSuccess";
readonly RemoveError: "Document::RemoveError";
};
export type DocumentEventsType = (typeof DocumentEvents)[keyof typeof DocumentEvents];
//# sourceMappingURL=document-events.d.ts.map