UNPKG

476 BTypeScriptView Raw
1export default class CodegenModelFactory {
2 static typeMapping: import("./java/fakeMap").FakeHashMap;
3 /**
4 * Configure a different implementation class.
5 *
6 * @param type the type that shall be replaced
7 * @param implementation the implementation class must extend the default class and must provide a public no-arg constructor
8 */
9 static setTypeMapping(type: any, implementation: any): void;
10 static newInstance(type: any): any;
11}