| 12345678910111213 |
- import type { ExtractPropTypes } from 'vue';
- export declare const SCOPE = "use-empty-values";
- export declare const DEFAULT_EMPTY_VALUES: (string | null | undefined)[];
- export declare const DEFAULT_VALUE_ON_CLEAR: undefined;
- export declare const useEmptyValuesProps: {
- readonly emptyValues: ArrayConstructor;
- readonly valueOnClear: import("element-plus/es/utils").EpPropFinalized<readonly [StringConstructor, NumberConstructor, BooleanConstructor, FunctionConstructor], unknown, unknown, undefined, boolean>;
- };
- export declare const useEmptyValues: (props: ExtractPropTypes<typeof useEmptyValuesProps>, defaultValue?: null | undefined) => {
- emptyValues: import("vue").ComputedRef<unknown[]>;
- valueOnClear: import("vue").ComputedRef<any>;
- isEmptyValue: (value: any) => boolean;
- };
|