mirror of
https://github.com/signalapp/Signal-Desktop.git
synced 2026-04-20 00:18:45 +01:00
Remove use of __dirname from main process
This commit is contained in:
24
ts/types/packageJson.d.ts
vendored
Normal file
24
ts/types/packageJson.d.ts
vendored
Normal file
@@ -0,0 +1,24 @@
|
||||
// Copyright 2026 Signal Messenger, LLC
|
||||
// SPDX-License-Identifier: AGPL-3.0-only
|
||||
|
||||
import type { ReadonlyDeep } from 'type-fest';
|
||||
|
||||
export type PackageJsonType = ReadonlyDeep<{
|
||||
name: string;
|
||||
version: string;
|
||||
productName: string;
|
||||
build: {
|
||||
appId: string;
|
||||
mac: {
|
||||
releaseInfo: {
|
||||
vendor: {
|
||||
minOSVersion: string;
|
||||
};
|
||||
};
|
||||
};
|
||||
deb: {
|
||||
depends: Array<string>;
|
||||
};
|
||||
files: Array<string | Record<string, unknown>>;
|
||||
};
|
||||
}>;
|
||||
Reference in New Issue
Block a user