hele
Version:
A front-end UI lib.
31 lines (20 loc) • 554 B
TypeScript
export as namespace HEle;
export * from "./typings/index";
declare global {
namespace JSX {
interface IntrinsicElements {
[name: string]: HEle.RawProps & {
style?: string | { [key: string]: string };
class?: string | any[];
'no-xmlns'?: boolean;
xmlns?: string;
};
}
interface ElementChildrenAttribute {
children: any;
}
}
interface Node {
context: any;
}
}