aboutsummaryrefslogtreecommitdiff
path: root/tools/typings/systemjs-builder.d.ts
blob: 4644816129655f9fa6acda8f1ec4a655ce770f14 (plain)
1
2
3
4
5
6
7
8
9
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;
}