Update c3.d.ts

Declare c3 as an exported module so the definitions show up in AMD modules (e.g. when using require.js with Typescript)
This commit is contained in:
Derrick Liu
2015-11-17 15:59:52 -08:00
parent fc341765eb
commit eb2abf5b61
Vendored
+4
View File
@@ -1067,3 +1067,7 @@ declare module c3 {
export function generate(config: ChartConfiguration): ChartAPI;
}
declare module "c3" {
export = c3;
}