UNPKG

angular2-json-schema-form

Version:
10 lines (9 loc) 987 B
import { PlainObject } from './validator.functions'; export declare function addClasses(oldClasses: string | string[] | Set<string>, newClasses: string | string[] | Set<string>): string | string[] | Set<string>; export declare function copy(object: any): any; export declare function forEach(object: any, fn: (v: any, k?: string | number, c?: any, rc?: any) => any, recurse?: boolean | string, rootObject?: any): void; export declare function forEachCopy(object: any, fn: (v: any, k?: string | number, o?: any, p?: string) => any): any; export declare function hasOwn(object: any, property: string): boolean; export declare function mergeFilteredObject(targetObject: PlainObject, sourceObject: PlainObject, excludeKeys?: any[], keyFn?: (string) => string, valueFn?: (any) => any): PlainObject; export declare function parseText(text?: string, value?: any, values?: any, index?: number): string; export declare function toTitleCase(input: string, forceWords?: string | string[]): string;