Skip to content

Commit

Permalink
chore: wip
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisbbreuer committed Feb 12, 2025
1 parent 8533457 commit 4624e1c
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/filter-parse-async.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ interface BitmapInfo {
height: number
interlace: boolean
bpp: number
depth: number
depth: 1 | 2 | 4 | 8 | 16
}

/**
Expand Down
2 changes: 1 addition & 1 deletion src/filter-parse-sync.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ interface BitmapInfo {
height: number
interlace: boolean
bpp: number
depth: number
depth: 1 | 2 | 4 | 8 | 16
}

/**
Expand Down
2 changes: 1 addition & 1 deletion src/filter-parse.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ interface BitmapInfo {
height: number
interlace: boolean
bpp: number
depth: number
depth: 1 | 2 | 4 | 8 | 16
}

interface FilterDependencies {
Expand Down
2 changes: 1 addition & 1 deletion src/parser-async.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ interface ParserOptions {
interface BitmapInfo {
width: number
height: number
depth: number
depth: 1 | 2 | 4 | 8 | 16
bpp: number
interlace: boolean
palette?: Buffer
Expand Down
2 changes: 2 additions & 0 deletions src/png.ts
Original file line number Diff line number Diff line change
Expand Up @@ -216,3 +216,5 @@ export class PNG extends EventEmitter {
PNG.adjustGamma(this)
}
}

export default PNG

0 comments on commit 4624e1c

Please sign in to comment.