UNPKG

dk-plus

Version:
10 lines (9 loc) 345 B
import type { CSSProperties, ComputedRef } from 'vue'; import type { DkRowPropsType } from '../../dkrow/src/prop'; import type { ClassListName } from '../../_interface'; interface DkRowType { classList: ComputedRef<ClassListName>; styleList: CSSProperties; } export declare const getRow: (props: DkRowPropsType) => DkRowType; export {};