@syntest/analysis-javascript
Version:
SynTest CFG JavaScript is a library for generating control flow graphs for the JavaScript language
15 lines • 552 B
TypeScript
import { ElementType } from "../discovery/element/Element";
export declare enum TypeEnum {
NUMERIC = "numeric",
INTEGER = "integer",
STRING = "string",
BOOLEAN = "boolean",
NULL = "null",
UNDEFINED = "undefined",
REGEX = "regex",
ARRAY = "array",
OBJECT = "object",
FUNCTION = "function"
}
export declare function elementTypeToTypingType(elementType: ElementType): TypeEnum.STRING | TypeEnum.NUMERIC | TypeEnum.BOOLEAN | TypeEnum.NULL | TypeEnum.UNDEFINED | TypeEnum.REGEX;
//# sourceMappingURL=TypeEnum.d.ts.map