16 lines
486 B
TypeScript
16 lines
486 B
TypeScript
enum RtEventKind {
|
|
FILE_CREATED = 'file_created',
|
|
FILE_RENAMED = 'file_renamed',
|
|
FILE_MOVED = 'file_moved',
|
|
FILE_DELETED = 'file_deleted',
|
|
FOLDER_CREATED = 'folder_created',
|
|
FOLDER_RENAMED = 'folder_renamed',
|
|
FOLDER_MOVED = 'folder_moved',
|
|
FOLDER_DELETED = 'folder_deleted',
|
|
NOTIFICATION_RECEIVED = 'notification_received',
|
|
JOB_RUN_STARTED = 'job_run_started',
|
|
JOB_RUN_PROGRESS = 'job_run_progress',
|
|
JOB_RUN_ENDED = 'job_run_ended'
|
|
}
|
|
export type { RtEventKind as default };
|