@beradrian/ngx-resource-core
Version:
Core of resource library
13 lines (12 loc) • 505 B
TypeScript
import { ResourceRequestBodyType } from './Declarations';
export declare class ResourceHelper {
static cleanDataFields: string[];
private static isBrowser;
static isRunningInBrowser(): boolean;
static getRealTypeOf(data: any): ResourceRequestBodyType;
static defaults(dst: any, src: any): any;
static isNullOrUndefined(value: any): boolean;
static cleanData(obj: any): any;
static cleanDataArray(obj: any[]): any[];
static cleanDataObject(obj: any): any;
}