UNPKG

@shopify/cli-kit

Version:

A set of utilities, interfaces, and models that are common across all the platform features

9 lines (8 loc) 287 B
import { InlineToken } from './TokenizedText.js'; import { FunctionComponent } from 'react'; export interface TabularDataProps { tabularData: InlineToken[][]; firstColumnSubdued?: boolean; } declare const TabularData: FunctionComponent<TabularDataProps>; export { TabularData };