bungie-api-ts-no-const-enum
Version:
TypeScript mappings for the Bungie.net API
13 lines (12 loc) • 618 B
JavaScript
export let GlobalAlertLevel;
(function (GlobalAlertLevel) {
GlobalAlertLevel[(GlobalAlertLevel['Unknown'] = 0)] = 'Unknown';
GlobalAlertLevel[(GlobalAlertLevel['Blue'] = 1)] = 'Blue';
GlobalAlertLevel[(GlobalAlertLevel['Yellow'] = 2)] = 'Yellow';
GlobalAlertLevel[(GlobalAlertLevel['Red'] = 3)] = 'Red';
})(GlobalAlertLevel || (GlobalAlertLevel = {}));
export let GlobalAlertType;
(function (GlobalAlertType) {
GlobalAlertType[(GlobalAlertType['GlobalAlert'] = 0)] = 'GlobalAlert';
GlobalAlertType[(GlobalAlertType['StreamingAlert'] = 1)] = 'StreamingAlert';
})(GlobalAlertType || (GlobalAlertType = {}));