1// this is clearly a fake jsx runtime, we use it simply to other appease `deno check` 2// this also means that our typechecks for TSX might be more lax than we wanted. 3// We'll improve over time. 4 5// deno-lint-ignore-file 6export namespace JSX { 7 export type IntrinsicElements = { [key: string]: unknown }; 8} 9 10