nano-jsx
Version:
SSR first, lightweight 1kB JSX library.
19 lines • 452 B
TypeScript
import { Component } from '../component.js';
declare class Attributes extends Map {
toString(): string;
}
export declare class Helmet extends Component {
static SSR(body: string): {
body: string;
head: string[];
footer: string[];
attributes: {
html: Attributes;
body: Attributes;
};
};
didMount(): void;
render(): any;
}
export {};
//# sourceMappingURL=helmet.d.ts.map