2018-04-15 08:02:54 +00:00
|
|
|
declare module '*.png';
|
2018-04-22 22:40:20 +00:00
|
|
|
|
|
|
|
declare module 'worker-loader!*' {
|
|
|
|
class WebpackWorker extends Worker {
|
|
|
|
constructor();
|
|
|
|
}
|
|
|
|
|
|
|
|
export default WebpackWorker;
|
|
|
|
}
|
|
|
|
|
|
|
|
declare module 'pixi.js/lib/core/math/Point' {
|
|
|
|
export default PIXI.Point;
|
|
|
|
}
|
|
|
|
|
|
|
|
declare module 'pixi.js/lib/core/text/Text' {
|
|
|
|
export default PIXI.Text;
|
|
|
|
}
|