Skip to content

Commit

Permalink
Shape系AssetをJSではなく、TSでバンドル
Browse files Browse the repository at this point in the history
  • Loading branch information
ics-ikeda committed Apr 17, 2018
1 parent 4aa8966 commit 0b4ec18
Show file tree
Hide file tree
Showing 8 changed files with 766 additions and 437 deletions.
2 changes: 2 additions & 0 deletions libs/d.ts/asset-shapes.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
declare var Assets: {};
export { Assets };
4 changes: 2 additions & 2 deletions libs/d.ts/particlejs.d.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { assets } from "./asset-shapes.js";
import { Assets } from "./asset-shapes";
import { ShapeGenerator } from "./assets/shape-generator";
import { ColorData } from "./data/data-color";
import { DrawingData } from "./data/data-drawing";
Expand All @@ -7,4 +7,4 @@ import { AlphaCurveType } from "./enum/alpha-curve-type";
import { ShapeType } from "./enum/shape-type";
import { Particle } from "./particle/particle";
import { ParticleSystem, VERSION } from "./particle/particle-system";
export { ParticleSystem, Particle, VERSION, DrawingData, ColorData, ShapeData, ShapeGenerator, AlphaCurveType, ShapeType, assets };
export { ParticleSystem, Particle, VERSION, DrawingData, ColorData, ShapeData, ShapeGenerator, AlphaCurveType, ShapeType, Assets };
Loading

0 comments on commit 0b4ec18

Please sign in to comment.