dk-plus
Version:
10 lines (9 loc) • 395 B
TypeScript
import type { ComputedRef, CSSProperties } from 'vue';
import type { ClassListName } from '../../_interface';
import type { DkInputNumberProps } from '../../dkinputNumber/src/props';
interface inputNumberType {
classList: ComputedRef<ClassListName>;
styleList: ComputedRef<CSSProperties>;
}
export declare const getInputNumber: (props: DkInputNumberProps) => inputNumberType;
export {};