@o3r/dynamic-content
Version:
This module provides a mechanism to retrieve media and data depending on the host or a server specific url.
30 lines (27 loc) • 1.01 kB
TypeScript
import { InterfaceOf } from '@o3r/core';
import { RequestParametersService, RequestParametersConfig } from '@o3r/dynamic-content';
/**
* Fixture file for requestParameters service
*/
declare class RequestParametersServiceFixture implements InterfaceOf<RequestParametersService> {
query: {
[key: string]: string;
};
post: {
[key: string]: string;
};
config: RequestParametersConfig;
getQueryParameter: jest.Mock<any, any>;
getQueryParameterAsBoolean: jest.Mock<any, any>;
getPostParameter: jest.Mock<any, any>;
getPostParameterAsBoolean: jest.Mock<any, any>;
getParameter: jest.Mock<any, any>;
getParameterAsBoolean: jest.Mock<any, any>;
clearQueryParameters: jest.Mock<any, any>;
clearPostParameters: jest.Mock<any, any>;
getFilteredParameters: jest.Mock<any, any>;
getParams: jest.Mock<any, any>;
constructor();
}
export { RequestParametersServiceFixture };
//# sourceMappingURL=o3r-dynamic-content-fixtures-jest.d.ts.map