metafloor / bwip-js

Barcode Writer in Pure JavaScript

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

SVG related functions are not represented in the .d.ts files

waweber opened this issue · comments

I'm using version 4.1.1 and the SVG related functions don't seem to be included in the declaration files for any platform.

I discovered this issue about 3 days ago and the fix is already queued up on my local branch. I am expecting to cut the release - which addresses #306 - this weekend. In the interim, if you want to manually add in the definitions:

    export function toSVG(opts: RenderOptions): string;
    export function drawingSVG(): DrawingContext<string>;

They will appear immediately above the // platform-specific exports comment.

Was testing the new version and got the found de same issue.

When trying to use the toSVG function I get a TS error:

Property 'toSVG' does not exist on type 'typeof BwipJs'.ts(2339)

v4.1.2 now contains the SVG declarations. Please give it a try.

Looks good to me! 💯

Thank you.