@ray-js/smart-ui-typings
Version:
@ray-js/smart-ui 智能小程序 UI 框架的类型声明文件
10 lines (9 loc) • 345 B
TypeScript
import { VantBaseExternalClassName, VantComponent } from '../base';
export interface VantRowProps {
/**
* 列元素之间的间距(单位为 px)
*/
gutter?: string | number;
}
export type VantRowExternalClassName = VantBaseExternalClassName;
export type VantRow = VantComponent<VantRowProps, {}, VantRowExternalClassName>;