2025-04-19 23:12:19 -04:00

15 lines
266 B
TypeScript

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;