UNPKG

com.phloxui

Version:

PhloxUI Ng2+ Framework

12 lines (11 loc) 602 B
import { Response, Headers } from '@angular/http'; import { AbstractServerResource } from '../AbstractServerResource'; import { IConnectionManager } from '../IConnectionManager'; export declare class JSONResource extends AbstractServerResource { private schemaCached; protected basePath: string; defaultHeaders: Headers; constructor(connectionMgr: IConnectionManager); getSchema(className: string): Promise<Response>; getSchemaWithConfigs(className: string, ignoreNull: boolean, ignoreEmpty: boolean, ignorePropRegex: string, includePropsFields: String[]): Promise<Response>; }