@todesktop/shared 7.37.0 → 7.37.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/desktopify.d.ts +1 -1
- package/package.json +1 -1
- package/src/desktopify.ts +1 -1
package/lib/desktopify.d.ts
CHANGED
|
@@ -137,7 +137,7 @@ export declare const isPlatformBuildRunning: (platformBuild: PlatformBuild) => b
|
|
|
137
137
|
export declare const isCiBuildRunning: (build: Build) => boolean;
|
|
138
138
|
export declare const isBuildRunning: (build: Build) => boolean;
|
|
139
139
|
export declare const isBuildCancellable: (build: Build) => boolean;
|
|
140
|
-
export interface
|
|
140
|
+
export interface DesktopifyApp {
|
|
141
141
|
name: string;
|
|
142
142
|
targetUrl: string;
|
|
143
143
|
appId: string;
|
package/package.json
CHANGED
package/src/desktopify.ts
CHANGED
|
@@ -250,7 +250,7 @@ export const isBuildRunning = (build: Build): boolean => {
|
|
|
250
250
|
export const isBuildCancellable = (build: Build): boolean =>
|
|
251
251
|
hasBuildKickedOff(build) && isBuildRunning(build);
|
|
252
252
|
|
|
253
|
-
export interface
|
|
253
|
+
export interface DesktopifyApp {
|
|
254
254
|
name: string;
|
|
255
255
|
targetUrl: string;
|
|
256
256
|
appId: string;
|