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