Skip to content

Commit

Permalink
chore: fix linting errors
Browse files Browse the repository at this point in the history
  • Loading branch information
schoero committed Sep 10, 2023
1 parent 904d60e commit 9cbaeba
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
5 changes: 3 additions & 2 deletions src/browser/bundle.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,9 @@ import { PDF } from "./pdf.js";
import { SVG } from "./svg.js";


export import blobStream = BlobStream_;
export import BlobStream = BlobStream_;
export const blobStream = BlobStream_;
// eslint-disable-next-line @typescript-eslint/naming-convention
export const BlobStream = BlobStream_;


export * as types from "../shared/types.js";
Expand Down
3 changes: 2 additions & 1 deletion src/browser/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@ import { BlobStream as BlobStream_, PDF } from "./pdf.js";
import { SVG } from "./svg.js";


export import utils = utils_;
export const utils = utils_;

export const blobStream = BlobStream_;

// eslint-disable-next-line @typescript-eslint/naming-convention
Expand Down
1 change: 1 addition & 0 deletions src/browser/svg.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ export class SVG extends SVG_ {
*
* **Note:** This function is only available in the browser.
* @readonly
* @returns The SVG element.
*/
public get element(): SVGElement {
return this.instance.element as unknown as SVGElement;
Expand Down

0 comments on commit 9cbaeba

Please sign in to comment.