UNPKG

381 BJavaScriptView Raw
1"use strict";
2Object.defineProperty(exports, "__esModule", { value: true });
3var EnumFormat;
4(function (EnumFormat) {
5 EnumFormat["SnakeCase"] = "snake-case";
6 EnumFormat["CamelCase"] = "camel-case";
7 EnumFormat["PascalCase"] = "pascal-case";
8 EnumFormat["ScreamingSnakeCase"] = "screaming-snake-case";
9})(EnumFormat = exports.EnumFormat || (exports.EnumFormat = {}));