declare enum OptionType { create = "1", delete = "2", view = "3", edit = "4" } declare enum PlayStatus { on = "on", off = "off", pause = "pause" } declare enum PageType { create = "create", edit = "edit", view = "view" } declare enum QualityProjectStatus { NOT_ON = 0, APPLYING = 1, ON = 2, DOWN = 3 } export { OptionType, PlayStatus, PageType, QualityProjectStatus }; //# sourceMappingURL=option-enum.d.ts.map