Skip to content

Commit

Permalink
chore: Compact version built
Browse files Browse the repository at this point in the history
  • Loading branch information
yegor-pelykh committed Oct 23, 2022
1 parent 67043ae commit 1f949f2
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 6 deletions.
13 changes: 11 additions & 2 deletions lib-compact/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1600,6 +1600,12 @@ declare module "transform/copy-into" {
}
}
declare module "formats/gif/gif-color-map" {
export interface GifColorMapInitOptions {
numColors: number;
bitsPerPixel?: number;
colors?: Uint8Array;
transparent?: number;
}
export class GifColorMap {
private readonly _colors;
get colors(): Uint8Array;
Expand All @@ -1610,8 +1616,9 @@ declare module "formats/gif/gif-color-map" {
private _transparent?;
set transparent(v: number | undefined);
get transparent(): number | undefined;
constructor(numColors: number);
constructor(options: GifColorMapInitOptions);
private static bitSize;
static from(other: GifColorMap): GifColorMap;
getByte(index: number): number;
setByte(index: number, value: number): number;
getColor(index: number): number;
Expand All @@ -1637,8 +1644,9 @@ declare module "formats/gif/gif-image-desc" {
get height(): number;
private readonly _interlaced;
get interlaced(): boolean;
private readonly _colorMap?;
private _colorMap?;
get colorMap(): GifColorMap | undefined;
set colorMap(v: GifColorMap | undefined);
private _duration;
set duration(v: number);
get duration(): number;
Expand Down Expand Up @@ -2170,6 +2178,7 @@ declare module "formats/png/png-frame" {
get dispose(): number | undefined;
private _blend?;
get blend(): number | undefined;
get delay(): number;
constructor(options: PngFrameInitOptions);
}
}
Expand Down
2 changes: 1 addition & 1 deletion lib-compact/index.js

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions lib-compact/index.js.map

Large diffs are not rendered by default.

0 comments on commit 1f949f2

Please sign in to comment.