Repository URL to install this package:
|
Version:
3.2.0 ▾
|
import { Value, AnyObj, SerializedObj } from './typings';
export interface DefaultSerializerArgs<KeyType = string, ValueType = any> {
propertyName: KeyType;
value: ValueType;
}
export declare const DEFAULT_SERIALIZER: (inputState: DefaultSerializerArgs<string, any>) => {
[x: string]: any;
};
export declare const DEFAULT_VALIDATOR: (value: Value) => boolean;
export declare const serializeListIntoMergedObj: (list: AnyObj[]) => SerializedObj;
export declare const toValue: (value: Value) => Value;
export declare const isColor: (value: any) => boolean;
export declare const toType: (value: any) => any;