UNPKG

262 BTypeScriptView Raw
1import { Parser } from 'acorn'
2
3declare const jsx: (options?: jsx.Options) => (BaseParser: typeof Parser) => typeof Parser;
4
5declare namespace jsx {
6 interface Options {
7 allowNamespacedObjects?: boolean;
8 allowNamespaces?: boolean;
9 }
10}
11
12export = jsx;