UNPKG

kodama-ui

Version:

Kodama UI is a Vue 3 component library that provides a set of components & funcionality to build your application.

17 lines (16 loc) 435 B
import { ExtractPropTypes } from 'vue'; import Props from './k-simple-table.props'; export type KSimpleTableColumn = { title: string; index?: string; align?: 'center' | 'left' | 'right'; nowrap?: boolean; width?: string; slot?: string; style?: Record<string, unknown>; url?: { name: string; id: string; }; }; export type KSimpleTableProps = Readonly<ExtractPropTypes<typeof Props>>;