aboutsummaryrefslogtreecommitdiff
path: root/tools/typings/systemjs-builder.d.ts
diff options
context:
space:
mode:
Diffstat (limited to 'tools/typings/systemjs-builder.d.ts')
-rw-r--r--tools/typings/systemjs-builder.d.ts10
1 files changed, 10 insertions, 0 deletions
diff --git a/tools/typings/systemjs-builder.d.ts b/tools/typings/systemjs-builder.d.ts
new file mode 100644
index 0000000..4644816
--- /dev/null
+++ b/tools/typings/systemjs-builder.d.ts
@@ -0,0 +1,10 @@
+declare module 'systemjs-builder' {
+ class Builder {
+ constructor(configObject?: any, baseUrl?: string, configPath?: string);
+ bundle(source: string, target: string, options?: any): Promise<any>;
+ buildStatic(source: string, target: string, options?: any): Promise<any>;
+ }
+
+ module Builder {}
+ export = Builder;
+}