jiaqingjiayi-xiaochengxu/甲情_甲意/miniprogram/node_modules/antd-mini/es/mixins/value.d.ts

23 lines
781 B
TypeScript
Raw Normal View History

2024-12-01 11:56:54 +00:00
import { IMixin4Legacy } from '@mini-types/alipay';
declare const _default: ({ valueKey, defaultValueKey, scopeKey, transformValue, }?: {
valueKey?: string;
defaultValueKey?: string;
scopeKey?: string;
transformValue?: (this: any, value: any, extra: {
nextProps: Record<string, any>;
}, ...args: any) => {
needUpdate: boolean;
value?: any;
};
}) => IMixin4Legacy<Record<string, any>, Record<string, any>, {
getValue(prevData?: any): any;
isControlled(): boolean;
updateControlled(): void;
update(val: any, extra?: any, ...args: any): {
needUpdate: boolean;
value: any;
};
isEqualValue(prevData: any): boolean;
}, MiniProgram.UnknownRecord, MiniProgram.UnknownRecord>;
export default _default;