1 | import { TargetBuilder, BuildOptions } from '../builder';
|
2 | import { JsiiModule } from '../packaging';
|
3 | import { Toposorted } from '../toposort';
|
4 | export declare enum TargetName {
|
5 | DOTNET = "dotnet",
|
6 | GO = "go",
|
7 | JAVA = "java",
|
8 | JAVASCRIPT = "js",
|
9 | PYTHON = "python"
|
10 | }
|
11 | export declare type BuilderFactory = (modules: Toposorted<JsiiModule>, options: BuildOptions) => TargetBuilder;
|
12 | export declare const ALL_BUILDERS: {
|
13 | [key in TargetName]: BuilderFactory;
|
14 | };
|
15 | export declare const INCOMPLETE_DISCLAIMER_NONCOMPILING = "Example automatically generated from non-compiling source. May contain errors.";
|
16 |
|
\ | No newline at end of file |