UNPKG

@jqassistant/ts-lce

Version:

Tool to extract language concepts from a TypeScript codebase and export them to a JSON file.

16 lines (15 loc) 561 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.ReactContextKeys = void 0; /** * Specifies keys for the definition and retrieval of local contexts within the React extension of the TS LCE. * * (see also "Local Contexts" in the developer documentation) */ class ReactContextKeys { /** * List of JSX tags that is used in some environment, e.g. inside the code of a function (`Array<LCEJSXDependency>`) */ static JSX_DEPENDENCIES = "jsx-dependency-context"; } exports.ReactContextKeys = ReactContextKeys;