rulescribe
Version:
Typescript rule engine
11 lines (10 loc) • 477 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.FunctionType = void 0;
var FunctionType;
(function (FunctionType) {
FunctionType[FunctionType["BUILTIN"] = 0] = "BUILTIN";
FunctionType[FunctionType["USER_DEFINED"] = 1] = "USER_DEFINED";
FunctionType[FunctionType["CLASS_METHOD"] = 2] = "CLASS_METHOD";
FunctionType[FunctionType["UNDEFINED"] = 3] = "UNDEFINED";
})(FunctionType || (exports.FunctionType = FunctionType = {}));