UNPKG

com.phloxui

Version:

PhloxUI Ng2+ Framework

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