kodama-ui
Version:
Kodama UI is a Vue 3 component library that provides a set of components & funcionality to build your application.
47 lines (46 loc) • 1.02 kB
TypeScript
import { ExtractPropTypes } from 'vue';
declare const Props: {
modelValue: {
type: StringConstructor;
default: string;
};
id: {
type: (StringConstructor | NumberConstructor)[];
default: string;
};
maxSize: {
type: NumberConstructor;
default: number;
};
accept: {
type: () => string[];
default: () => string[];
};
removable: {
type: BooleanConstructor;
default: boolean;
};
loading: {
type: BooleanConstructor;
default: boolean;
};
disabled: {
type: BooleanConstructor;
default: boolean;
};
required: {
type: BooleanConstructor;
default: boolean;
};
label: {
type: StringConstructor;
default: string;
};
size: {
type: StringConstructor;
default: string;
options: string[];
};
};
export type KDropzoneProps = Readonly<ExtractPropTypes<typeof Props>>;
export default Props;