We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4713185 commit 8393302Copy full SHA for 8393302
code-generation/index.d.ts
@@ -1,2 +1,2 @@
1
import { SceMain } from "./interfaces";
2
-export declare const plugins: Array<SceMain>;
+export declare const plugins: Array<new () => SceMain>;
code-generation/index.ts
@@ -7,13 +7,7 @@ import * as nodejsmocha from './values/nodejs-mocha';
7
import * as nodejssuman from './values/nodejs-suman';
8
9
10
-export const plugins : Array<SceMain>= [
11
-
12
13
14
15
16
+export const plugins : Array<new() => SceMain>= [
17
18
javajunit.CodeGenerator,
19
javatestng.CodeGenerator,
0 commit comments