2
This commit is contained in:
16
normal-admin/node_modules/element-plus/lib/hooks/use-empty-values/index.d.ts
generated
vendored
Normal file
16
normal-admin/node_modules/element-plus/lib/hooks/use-empty-values/index.d.ts
generated
vendored
Normal file
@@ -0,0 +1,16 @@
|
||||
import type { ExtractPropTypes, InjectionKey, Ref } from 'vue';
|
||||
type EmptyValuesContext = ExtractPropTypes<typeof useEmptyValuesProps>;
|
||||
export declare const emptyValuesContextKey: InjectionKey<Ref<EmptyValuesContext>>;
|
||||
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<(new (...args: any[]) => string | number | boolean | Function) | (() => string | number | boolean | Function | null) | ((new (...args: any[]) => string | number | boolean | Function) | (() => string | number | boolean | Function | null))[], unknown, unknown, undefined, boolean>;
|
||||
};
|
||||
export declare const useEmptyValues: (props: EmptyValuesContext, defaultValue?: null | undefined) => {
|
||||
emptyValues: import("vue").ComputedRef<unknown[]>;
|
||||
valueOnClear: import("vue").ComputedRef<any>;
|
||||
isEmptyValue: (value: unknown) => boolean;
|
||||
};
|
||||
export {};
|
||||
Reference in New Issue
Block a user