update electron to v43

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

@ -1,8 +1,7 @@
import { Configuration } from "../configuration";
export interface Metadata {
/**
* The application name.
* @required
* The application name. Required.
*/
readonly name?: string;
/**
@ -29,12 +28,12 @@ export interface Metadata {
*/
readonly build?: Configuration;
/** @private */
readonly dependencies?: {
[key: string]: string;
};
readonly dependencies?: Record<string, string>;
/** @private */
readonly version?: string;
/** @private */
readonly type?: string;
/** @private */
readonly shortVersion?: string | null;
/** @private */
readonly shortVersionWindows?: string | null;
@ -42,6 +41,8 @@ export interface Metadata {
readonly productName?: string | null;
/** @private */
readonly main?: string | null;
/** @private */
readonly desktopName?: string | null;
}
export interface AuthorMetadata {
readonly name: string;