angular-material-datatransfer-lib
Version:
A HTML5 datatransfer UI for handling upload and download of multiple simultaneous files.
18 lines (17 loc) • 454 B
TypeScript
export declare enum CustomEventType {
UNKNOWN = 0,
CREATE = 1,
DOWNLOAD_ITEM = 2,
UPDATE_CONFIG = 3,
INIT = 4,
UPLOAD_COMPLETED = 5,
DOWNLOAD_COMPLETED = 6,
ITEM_ADDED = 7,
ITEM_REMOVED = 8,
ITEM_COMPLETED = 9,
ITEMS_CLEARED = 10
}
export declare namespace CustomEventTypeExtensions {
function toString(type: CustomEventType): string;
function toEnum(type: string): CustomEventType;
}