UNPKG

dk-plus

Version:
10 lines (9 loc) 381 B
import { type CSSProperties, type ComputedRef } from 'vue'; import type { SwitchPropsType } from '../../dkswitch/src/props'; import type { ClassListName } from '../../_interface'; interface GetSwitchReturnsType { classList: ComputedRef<ClassListName>; styleList: CSSProperties; } export declare const getSwitch: (props: SwitchPropsType) => GetSwitchReturnsType; export {};