@essential-js/ui
Version:
EssentialJS UI
45 lines (38 loc) • 1.51 kB
TypeScript
/************
Processor: ts
************/
import * as dependency_0 from 'react';
// FILE: card.d.tsx
declare namespace ns_card {
import HTMLAttributes = dependency_0.HTMLAttributes;
interface Props extends Partial<HTMLAttributes<HTMLElement>> {
breakpoint?: number;
children: any;
}
function Card({ children, ...props }: Props): JSX.Element;
}
// FILE: element-title.d.tsx
declare namespace ns_elementtitle {
import HTMLAttributes = dependency_0.HTMLAttributes;
interface Props extends Partial<HTMLAttributes<HTMLDivElement>> {
message: string;
aparitionTime?: number;
offsetY?: number;
offsetX?: number;
children: any;
}
function ElementTitle({ offsetX, offsetY, children, aparitionTime, message, ...props }: Props): JSX.Element;
}
// FILE: table.d.tsx
declare namespace ns_table {
import DetailedHTMLProps = dependency_0.DetailedHTMLProps;
import TableHTMLAttributes = dependency_0.TableHTMLAttributes;
interface Props extends Partial<DetailedHTMLProps<TableHTMLAttributes<HTMLTableElement>, HTMLTableElement>> {
breakpoint?: number;
}
function Table({ breakpoint, children, ...props }: Props): JSX.Element;
}
export import Card = ns_card.Card;
export import ElementTitle = ns_elementtitle.ElementTitle;
export import Table = ns_table.Table;
export declare const hmr: {on: (event: string, listener: any) => void, off: (event: string, listener: any) => void };