/**
* Copyright (c) 2025 xwra
* SPDX-License-Identifier: AGPL-3.0-or-later
*/
///
import type { ChunkedStream } from "./stream.ts";
declare global {
namespace JSX {
type Element = (chunks: ChunkedStream) => Promise;
interface IntrinsicElements {
[key: string]: ElementProps;
}
interface ElementProps {
[key: string]: any;
}
}
}