Files
med-notes/.pnpm-store/v10/files/a7/3a9c36fcd11175913f844a9bd6577c0793b2c2604284c35ddb62d93fc82289da9ec67ce69451dea1e2a15f15b91f1d47dd357ac916b16114abc634812e4e07
2025-05-09 05:30:08 +02:00

13 lines
262 B
Plaintext

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;