Skip to content

1.2.1

Compare
Choose a tag to compare
@ShukantPal ShukantPal released this 18 Apr 00:13
· 72 commits to master since this release

🗞️ Bug fixes

  • Fixed private access modifier inference for TypeScript methods (#106)
interface Resource {
    /** No need for explicit @private tag. */
    private _onPlay() {}
}
  • Fixed scope inference from canonical names in @memberof tags (#107)

The following snippet will correctly be inferred as "instance" scope instead of "static" scope based on the last separator "#" (instead of the first ".").

/** @method PIXI.Graphics#drawChamferRect. */
  • Fix data-type, readonly inference of TypeScript interface properties (#108)
interface MixinBase {
    /** No need for @readonly or @type {boolean} tags. */
    readonly isMounted: boolean;
}