birdpaper-ui
Version:
一个通用的 vue3 UI组件库。A common vue3 UI component library.
17 lines (16 loc) • 405 B
TypeScript
export interface ColumnsItem {
title?: string;
type: "inner" | "radio" | "checkbox";
dataIndex?: string;
width?: number;
minWidth?: number;
align: "left" | "center" | "right";
scope?: {
customRender: string;
};
}
/** 选择器配置 */
export interface SelectionConfig {
type: "radio" | "checkbox";
}
export declare type SelectedValue = Array<string | number>;