update electron to v43
All checks were successful
Android Build / publish (push) Successful in 55s
Linux Build / publish (push) Successful in 1m6s

This commit is contained in:
olcxja 2026-07-09 22:38:33 +02:00
commit fb6c8b6ee9
5385 changed files with 513060 additions and 123058 deletions

View file

@ -7,6 +7,7 @@ export declare class PackJob {
stat?: Stats;
readdir?: string[];
pending: boolean;
pendingLink: boolean;
ignore: boolean;
piped: boolean;
constructor(path: string, absolute: string);
@ -14,12 +15,13 @@ export declare class PackJob {
import { Minipass } from 'minipass';
import * as zlib from 'minizlib';
import { Yallist } from 'yallist';
import { ReadEntry } from './read-entry.js';
import type { ReadEntry } from './read-entry.js';
import type { WarnEvent } from './warn-method.js';
import { type WarnData, type Warner } from './warn-method.js';
declare const ONSTAT: unique symbol;
declare const ENDED: unique symbol;
declare const QUEUE: unique symbol;
declare const PENDINGLINKS: unique symbol;
declare const CURRENT: unique symbol;
declare const PROCESS: unique symbol;
declare const PROCESSING: unique symbol;
@ -62,6 +64,7 @@ export declare class Pack extends Minipass<Buffer, ReadEntry | string, WarnEvent
[WRITEENTRYCLASS]: typeof WriteEntry | typeof WriteEntrySync;
onWriteEntry?: (entry: WriteEntry) => void;
[QUEUE]: Yallist<PackJob>;
[PENDINGLINKS]: Map<`${number}:${number}`, PackJob[]>;
[JOBS]: number;
[PROCESSING]: boolean;
[ENDED]: boolean;
@ -80,7 +83,7 @@ export declare class Pack extends Minipass<Buffer, ReadEntry | string, WarnEvent
[ONREADDIR](job: PackJob, entries: string[]): void;
[PROCESS](): void;
get [CURRENT](): PackJob | undefined;
[JOBDONE](_job: PackJob): void;
[JOBDONE](job: PackJob): void;
[PROCESSJOB](job: PackJob): void;
[ENTRYOPT](job: PackJob): TarOptions;
[ENTRY](job: PackJob): WriteEntry | undefined;