UNPKG

dk-plus

Version:
10 lines (9 loc) 361 B
import type { ComputedRef, CSSProperties } from 'vue'; import type { ClassListName } from '../../_interface'; import type { DkCheckboxType } from '../../dkcheckbox/src/props'; interface CheckboxType { classList: ComputedRef<ClassListName>; styleList: CSSProperties; } export declare const getCheckbox: (prop: DkCheckboxType) => CheckboxType; export {};