import ts from 'typescript'; /** * Transformer that adds meta-data which is used by React for development error messages. * * It adds the following attributes to all JSX elements: * 1. __self={this} * 2. __source={{ fileName: __jsxFileName, lineNumber: [jsx line number] }} * * if __source was added, the following declaration is prepended to source file: * const __jsxFileName = [absolute file path] */ export declare function reactDevTransformer(context: ts.TransformationContext): ts.Transformer; //# sourceMappingURL=react-dev-transformer.d.ts.map