DragonBones / DragonBonesJS

DragonBones TypeScript / JavaScript Runtime
MIT License
746 stars 320 forks source link

Library .d.ts typing files #95

Open jegijsje opened 5 years ago

jegijsje commented 5 years ago

Hi,

Are there any typing .d.ts files for this library? I know the project is written in TypeScrpit but the can't seem to find .d.ts typings anywhere in this project.

Is there any information about this?

rtalon83 commented 5 years ago

Hi.

You can take it from here: https://github.com/pixijs/pixi-typescript

Copy pixi.js.d.ts in Pixi\4.x\libs

jegijsje commented 5 years ago

Thanks, but I figured it out a different way. I was not supposed to include it with import dragonBones from "dragonbones-pixi"; or import * as dragonBones from "dragonbones-pixi";

I had to import the library like this: import { dragonBones } from "dragonbones-pixi";