UNPKG

@innovaccer/design-system

Version:

React components library project for Innovaccer Design System

19 lines (18 loc) 562 B
import * as React from 'react'; import { Schema } from "../../organisms/grid"; export declare const spaceSchema: Schema; export declare const getSchema: (property: string, text: string, classnames?: string | undefined, css?: object | undefined) => ({ name: string; displayName: string; width: string; resizable: boolean; sorting: boolean; cellRenderer: (props: any) => React.JSX.Element; } | { name: string; displayName: string; width: string; resizable: boolean; sorting: boolean; cellRenderer?: undefined; })[];