dotting
Version:
Dotting is a pixel art editor component library for react
13 lines (12 loc) • 357 B
TypeScript
/// <reference types="react" />
export interface TableItem {
name: string;
version: string;
description: string;
parameters: string;
}
export interface TableWithVersionsProps {
tables: Array<TableItem>;
}
declare const TableWithVersions: ({ tables }: TableWithVersionsProps) => JSX.Element;
export default TableWithVersions;