x4js
Version:
25 lines (23 loc) • 492 B
TypeScript
/**
* ___ ___ __
* \ \/ / / _
* \ / /_| |_
* / \____ _|
* /__/\__\ |_|.2
*
* @file tsx.d.ts
* @author Etienne Cochard
*
* @copyright (c) 2025 R-libre ingenierie
*
* Use of this source code is governed by an MIT-style license
* that can be found in the LICENSE file or at https://opensource.org/licenses/MIT.
**/
export { }
declare global {
namespace JSX {
interface IntrinsicElements {
[ name: string ]: any;
}
}
}