kodama-ui
Version:
Kodama UI is a Vue 3 component library that provides a set of components & funcionality to build your application.
87 lines (86 loc) • 1.99 kB
TypeScript
import { ErrorObject } from '@vuelidate/core';
import { ExtractPropTypes, PropType } from 'vue';
declare const Props: {
modelValue: {
type: StringConstructor;
default: string;
description: string;
};
mandatory: {
type: StringConstructor;
default: string;
description: string;
};
placeholder: {
type: StringConstructor;
default: string;
description: string;
};
maxHeight: {
type: NumberConstructor;
default: number;
description: string;
};
minHeight: {
type: NumberConstructor;
default: number;
description: string;
};
label: {
type: StringConstructor;
default: string;
description: string;
};
required: {
type: BooleanConstructor;
default: boolean;
description: string;
};
errors: {
type: PropType<ErrorObject[]>;
required: boolean;
default: () => never[];
description: string;
};
status: {
type: StringConstructor;
default: string;
control: {
type: string;
};
options: string[];
description: string;
};
title: {
type: BooleanConstructor;
default: boolean;
description: string;
};
list: {
type: BooleanConstructor;
default: boolean;
description: string;
};
quote: {
type: BooleanConstructor;
default: boolean;
description: string;
};
code: {
type: BooleanConstructor;
default: boolean;
description: string;
};
history: {
type: BooleanConstructor;
default: boolean;
description: string;
};
zenmode: {
type: BooleanConstructor;
default: boolean;
description: string;
};
};
export type KEditorProps = Readonly<ExtractPropTypes<typeof Props>>;
export default Props;