@ray-js/smart-ui-typings
Version:
@ray-js/smart-ui 智能小程序 UI 框架的类型声明文件
14 lines (13 loc) • 391 B
TypeScript
import { VantBaseExternalClassName, VantComponent } from '../base';
export interface VantColProps {
/**
* 列元素宽度
*/
span?: string | number;
/**
* 列元素偏移距离
*/
offset?: string | number;
}
export type VantColExternalClassName = VantBaseExternalClassName;
export type VantCol = VantComponent<VantColProps, {}, VantColExternalClassName>;