kjelsrud.dev/node_modules/acorn-jsx/index.d.ts

13 lines
262 B
TypeScript
Raw Normal View History

2023-07-19 21:31:30 +02:00
import { Parser } from 'acorn'
declare const jsx: (options?: jsx.Options) => (BaseParser: typeof Parser) => typeof Parser;
declare namespace jsx {
interface Options {
allowNamespacedObjects?: boolean;
allowNamespaces?: boolean;
}
}
export = jsx;