@visualjs/grid
Version:
JavaScript Data Table
12 lines (11 loc) • 355 B
TypeScript
import { Grid } from "../../grid";
import { ComponentChildren } from "preact";
import { JSXInternal } from "preact/src/jsx";
interface Props {
value: string;
children?: ComponentChildren;
style?: JSXInternal.CSSProperties;
grid: Grid;
}
declare const _default: (props: Omit<Props, "grid">) => JSXInternal.Element;
export default _default;