Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
@skava/forms / build / dist / src / new-forms / deps.d.ts
Size: Mime:
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;