UNPKG

@cblink/finches-ui

Version:

A Component Library for Vue 3

36 lines (35 loc) 779 B
import type { PropType } from 'vue'; export declare const basicProps: { columns: { type: PropType<any[]>; default: () => never[]; }; dataSource: { type: PropType<any[]>; default: null; }; pagination: { type: PropType<any>; default: null; }; api: { type: PropType<(...arg: any[]) => Promise<any>>; default: null; }; formConfig: { type: PropType<Partial<any>>; default: null; }; formCardOptions: ObjectConstructor; tableCardOptions: ObjectConstructor; height: { type: NumberConstructor; }; maxHeight: { type: NumberConstructor; }; outsidePadding: { type: NumberConstructor; default: number; }; };