declare namespace FxWebxTest { interface FibAppTestClientOptions { modelName: string } interface FibAppTestHttpClientOptions extends FibAppTestClientOptions { // deprecated, use `appUrlBase` instead serverBase?: string appUrlBase?: string apiUrlBase?: string graphQlUrlBase?: string } interface FibAppTestHttpClient { create: (obj: object) => FxWebx.AppIdType get: (id: FxWebx.AppIdType) => object getByGraphQL: (id: FxWebx.AppIdType, fields: string[] | string) => object find: (condition: object | string) => object findByGraphQL: (condition: object | string) => object update: (id: FxWebx.AppIdType, obj: object) => object delete: (id: FxWebx.AppIdType) => object link: (id: FxWebx.AppIdType, extName: string, ext_id: FxWebx.AppIdType) => object unlink: (id: FxWebx.AppIdType, extName: string, ext_id: FxWebx.AppIdType) => object findExt: (id: FxWebx.AppIdType, extName, condition: object | string) => object createExt: (id: FxWebx.AppIdType, extName: string, data: object) => object updateExt: (id: FxWebx.AppIdType, extName: string, edata: object) => object } }