jay-js
Version:
Jay is a framework for creating a single page application.
12 lines (11 loc) • 346 B
TypeScript
import "./NavBar.style.css";
declare type NavBarType = {
id?: string;
tag?: string;
style?: Partial<CSSStyleDeclaration>;
content: string | Function | Node | any;
className?: string | Function;
attributes?: Array<[string, string]>;
};
export declare const NavBar: (props: NavBarType) => HTMLElement;
export {};