@types/openfin
Advanced tools
Comparing version
@@ -20,3 +20,3 @@ import { EmitterBase, Base, Reply } from '../base'; | ||
manifestUrl: string; | ||
parentUuid?: string; | ||
parentUuid?: string | undefined; | ||
runtime: object; | ||
@@ -32,5 +32,5 @@ } | ||
export interface ShortCutConfig { | ||
desktop?: boolean; | ||
startMenu?: boolean; | ||
systemStartup?: boolean; | ||
desktop?: boolean | undefined; | ||
startMenu?: boolean | undefined; | ||
systemStartup?: boolean | undefined; | ||
} | ||
@@ -48,4 +48,4 @@ export interface TrayInfo { | ||
export interface RvmLaunchOptions { | ||
noUi?: boolean; | ||
userAppConfigArgs?: object; | ||
noUi?: boolean | undefined; | ||
userAppConfigArgs?: object | undefined; | ||
} | ||
@@ -194,3 +194,3 @@ /** | ||
identity: Identity; | ||
_manifestUrl?: string; | ||
_manifestUrl?: string | undefined; | ||
private window; | ||
@@ -197,0 +197,0 @@ constructor(wire: Transport, identity: Identity); |
import { WindowOption } from '../window/windowOption'; | ||
export interface ApplicationOption extends LegacyWinOptionsInAppOptions { | ||
disableIabSecureLogging?: boolean; | ||
loadErrorMessage?: string; | ||
mainWindowOptions?: WindowOption; | ||
name?: string; | ||
nonPersistent?: boolean; | ||
plugins?: boolean; | ||
spellCheck?: boolean; | ||
url?: string; | ||
disableIabSecureLogging?: boolean | undefined; | ||
loadErrorMessage?: string | undefined; | ||
mainWindowOptions?: WindowOption | undefined; | ||
name?: string | undefined; | ||
nonPersistent?: boolean | undefined; | ||
plugins?: boolean | undefined; | ||
spellCheck?: boolean | undefined; | ||
url?: string | undefined; | ||
uuid: string; | ||
webSecurity?: boolean; | ||
fdc3Api?: boolean; | ||
webSecurity?: boolean | undefined; | ||
fdc3Api?: boolean | undefined; | ||
} | ||
export declare type LegacyWinOptionsInAppOptions = Pick<WindowOption, 'accelerator' | 'alwaysOnTop' | 'api' | 'aspectRatio' | 'autoShow' | 'backgroundColor' | 'contentNavigation' | 'contextMenu' | 'cornerRounding' | 'customData' | 'customRequestHeaders' | 'defaultCentered' | 'defaultHeight' | 'defaultLeft' | 'defaultTop' | 'defaultWidth' | 'frame' | 'hideOnClose' | 'icon' | 'maxHeight' | 'maximizable' | 'maxWidth' | 'minHeight' | 'minimizable' | 'minWidth' | 'opacity' | 'preloadScripts' | 'resizable' | 'resizeRegion' | 'saveWindowState' | 'shadow' | 'showTaskbarIcon' | 'smallWindow' | 'state' | 'taskbarIconGroup' | 'waitForPageLoad'>; |
@@ -8,3 +8,3 @@ /// <reference types="node" /> | ||
export interface SubOptions { | ||
timestamp?: number; | ||
timestamp?: number | undefined; | ||
} | ||
@@ -45,3 +45,3 @@ export declare class Base { | ||
uuid: string; | ||
name?: string; | ||
name?: string | undefined; | ||
} |
export interface WriteRequestType { | ||
data: string; | ||
type?: string; | ||
type?: string | undefined; | ||
} | ||
export interface WriteAnyRequestType { | ||
data: { | ||
text?: string; | ||
html?: string; | ||
rtf?: string; | ||
text?: string | undefined; | ||
html?: string | undefined; | ||
rtf?: string | undefined; | ||
}; | ||
type?: string; | ||
type?: string | undefined; | ||
} |
@@ -5,3 +5,3 @@ import { BaseEventMap, ApplicationEvent } from './base'; | ||
channelId: string; | ||
name?: string; | ||
name?: string | undefined; | ||
} | ||
@@ -8,0 +8,0 @@ export interface ChannelEvents extends BaseEventMap { |
@@ -25,3 +25,3 @@ import { CrashedEvent } from './application'; | ||
export interface WindowNavigationRejectedEvent<Topic, Type> extends WindowEvent<Topic, Type> { | ||
sourceName?: string; | ||
sourceName?: string | undefined; | ||
url: string; | ||
@@ -28,0 +28,0 @@ } |
@@ -5,3 +5,3 @@ import { Identity } from '../../../identity'; | ||
channelId: string; | ||
isExternal?: boolean; | ||
isExternal?: boolean | undefined; | ||
channelName: string; | ||
@@ -8,0 +8,0 @@ } |
@@ -9,3 +9,3 @@ import { ChannelClient } from './client'; | ||
export interface ConnectOptions { | ||
wait?: boolean; | ||
wait?: boolean | undefined; | ||
payload?: any; | ||
@@ -12,0 +12,0 @@ } |
@@ -78,4 +78,4 @@ /// <reference types="node" /> | ||
topic: string; | ||
destinationUuid?: string; | ||
destinationUuid?: string | undefined; | ||
message?: any; | ||
} |
@@ -15,4 +15,4 @@ import { Channel } from '../interappbus/channel/index'; | ||
export interface PlatformOptions extends ApplicationOption { | ||
defaultWindowOptions?: WindowOption; | ||
defaultViewOptions?: ViewCreationOptions; | ||
defaultWindowOptions?: WindowOption | undefined; | ||
defaultViewOptions?: ViewCreationOptions | undefined; | ||
} | ||
@@ -19,0 +19,0 @@ /** |
export interface ApplicationInfo { | ||
isRunning: boolean; | ||
uuid: string; | ||
parentUuid?: string; | ||
parentUuid?: string | undefined; | ||
} |
export interface ClearCacheOption { | ||
appcache?: boolean; | ||
cache?: boolean; | ||
cookies?: boolean; | ||
localStorage?: boolean; | ||
appcache?: boolean | undefined; | ||
cache?: boolean | undefined; | ||
cookies?: boolean | undefined; | ||
localStorage?: boolean | undefined; | ||
} |
export interface CrashReporterOption { | ||
diagnosticMode: boolean; | ||
isRunning?: boolean; | ||
isRunning?: boolean | undefined; | ||
} |
@@ -5,5 +5,5 @@ export interface AppAssetInfo { | ||
version: string; | ||
target?: string; | ||
args?: string; | ||
mandatory?: boolean; | ||
target?: string | undefined; | ||
args?: string | undefined; | ||
mandatory?: boolean | undefined; | ||
} | ||
@@ -10,0 +10,0 @@ export interface RuntimeDownloadOptions { |
@@ -6,4 +6,4 @@ export interface DownloadPreloadOption { | ||
success: boolean; | ||
url?: string; | ||
url?: string | undefined; | ||
error: string; | ||
} |
export interface ExternalProcessRequestType { | ||
path?: string; | ||
alias?: string; | ||
arguments?: string; | ||
listener?: LaunchExternalProcessListener; | ||
lifetime?: string; | ||
certificate?: CertificationInfo; | ||
uuid?: string; | ||
path?: string | undefined; | ||
alias?: string | undefined; | ||
arguments?: string | undefined; | ||
listener?: LaunchExternalProcessListener | undefined; | ||
lifetime?: string | undefined; | ||
certificate?: CertificationInfo | undefined; | ||
uuid?: string | undefined; | ||
} | ||
export interface CertificationInfo { | ||
serial?: string; | ||
subject?: string; | ||
publickey?: string; | ||
thumbprint?: string; | ||
trusted?: boolean; | ||
serial?: string | undefined; | ||
subject?: string | undefined; | ||
publickey?: string | undefined; | ||
thumbprint?: string | undefined; | ||
trusted?: boolean | undefined; | ||
} | ||
@@ -36,3 +36,3 @@ export interface ExitCode { | ||
pid: number; | ||
listener?: LaunchExternalProcessListener; | ||
listener?: LaunchExternalProcessListener | undefined; | ||
} | ||
@@ -39,0 +39,0 @@ export interface ServiceConfiguration { |
@@ -17,3 +17,3 @@ export interface Time { | ||
export interface HostSpecs { | ||
aeroGlassEnabled?: boolean; | ||
aeroGlassEnabled?: boolean | undefined; | ||
arch: string; | ||
@@ -24,3 +24,3 @@ cpus: CpuInfo[]; | ||
name: string; | ||
screenSaver?: boolean; | ||
screenSaver?: boolean | undefined; | ||
} |
export interface GetLogRequestType { | ||
name: string; | ||
endFile?: string; | ||
sizeLimit?: number; | ||
endFile?: string | undefined; | ||
sizeLimit?: number | undefined; | ||
} | ||
@@ -6,0 +6,0 @@ export interface LogInfo { |
export interface ProcessInfo { | ||
cpuUsage?: number; | ||
name?: string; | ||
nonPagedPoolUsage?: number; | ||
pageFaultCount?: number; | ||
pagedPoolUsage?: number; | ||
pagefileUsage?: number; | ||
peakNonPagedPoolUsage?: number; | ||
peakPagedPoolUsage?: number; | ||
peakPagefileUsage?: number; | ||
peakWorkingSetSize?: number; | ||
processId?: number; | ||
uuid?: string; | ||
workingSetSize?: number; | ||
cpuUsage?: number | undefined; | ||
name?: string | undefined; | ||
nonPagedPoolUsage?: number | undefined; | ||
pageFaultCount?: number | undefined; | ||
pagedPoolUsage?: number | undefined; | ||
pagefileUsage?: number | undefined; | ||
peakNonPagedPoolUsage?: number | undefined; | ||
peakPagedPoolUsage?: number | undefined; | ||
peakPagefileUsage?: number | undefined; | ||
peakWorkingSetSize?: number | undefined; | ||
processId?: number | undefined; | ||
uuid?: string | undefined; | ||
workingSetSize?: number | undefined; | ||
} |
@@ -5,8 +5,8 @@ export interface RuntimeInfo { | ||
port: number; | ||
securityRealm?: string; | ||
securityRealm?: string | undefined; | ||
version: string; | ||
args: object; | ||
chromeVersion: string; | ||
fdc3AppUuid?: string; | ||
fdc3ChannelName?: string; | ||
fdc3AppUuid?: string | undefined; | ||
fdc3ChannelName?: string | undefined; | ||
} |
@@ -164,3 +164,3 @@ import { WebContents } from '../webcontents/webcontents'; | ||
*/ | ||
width?: boolean; | ||
width?: boolean | undefined; | ||
/** | ||
@@ -170,3 +170,3 @@ * If true, the view's height will grow and shrink together with the window. false | ||
*/ | ||
height?: boolean; | ||
height?: boolean | undefined; | ||
/** | ||
@@ -176,3 +176,3 @@ * If true, the view's x position and width will grow and shrink proportionally with | ||
*/ | ||
horizontal?: boolean; | ||
horizontal?: boolean | undefined; | ||
/** | ||
@@ -182,8 +182,8 @@ * If true, the view's y position and height will grow and shrink proportionally with | ||
*/ | ||
vertical?: boolean; | ||
vertical?: boolean | undefined; | ||
} | ||
export interface ViewOptions { | ||
autoResize?: AutoResizeOptions; | ||
contextMenuSettings?: ContextMenuSettings; | ||
backgroundColor?: string; | ||
autoResize?: AutoResizeOptions | undefined; | ||
contextMenuSettings?: ContextMenuSettings | undefined; | ||
backgroundColor?: string | undefined; | ||
customData?: any; | ||
@@ -196,5 +196,5 @@ customContext?: any; | ||
target: Identity; | ||
customRequestHeaders?: CustomRequestHeaders[]; | ||
bounds?: ViewBounds; | ||
processAffinity?: string; | ||
customRequestHeaders?: CustomRequestHeaders[] | undefined; | ||
bounds?: ViewBounds | undefined; | ||
processAffinity?: string | undefined; | ||
} |
@@ -72,3 +72,3 @@ import { Base } from '../base'; | ||
entityType: EntityType; | ||
parent?: Identity; | ||
parent?: Identity | undefined; | ||
} | ||
@@ -88,26 +88,26 @@ export interface Area { | ||
interface Margins { | ||
marginType?: ('default' | 'none' | 'printableArea' | 'custom'); | ||
top?: number; | ||
bottom?: number; | ||
left?: number; | ||
right?: number; | ||
marginType?: ('default' | 'none' | 'printableArea' | 'custom') | undefined; | ||
top?: number | undefined; | ||
bottom?: number | undefined; | ||
left?: number | undefined; | ||
right?: number | undefined; | ||
} | ||
interface Dpi { | ||
horizontal?: number; | ||
vertical?: number; | ||
horizontal?: number | undefined; | ||
vertical?: number | undefined; | ||
} | ||
export interface PrintOptions { | ||
silent?: boolean; | ||
printBackground?: boolean; | ||
deviceName?: string; | ||
color?: boolean; | ||
margins?: Margins; | ||
landscape?: boolean; | ||
scaleFactor?: number; | ||
pagesPerSheet?: number; | ||
collate?: boolean; | ||
copies?: number; | ||
pageRanges?: Record<string, number>; | ||
duplexMode?: ('simplex' | 'shortEdge' | 'longEdge'); | ||
dpi?: Dpi; | ||
silent?: boolean | undefined; | ||
printBackground?: boolean | undefined; | ||
deviceName?: string | undefined; | ||
color?: boolean | undefined; | ||
margins?: Margins | undefined; | ||
landscape?: boolean | undefined; | ||
scaleFactor?: number | undefined; | ||
pagesPerSheet?: number | undefined; | ||
collate?: boolean | undefined; | ||
copies?: number | undefined; | ||
pageRanges?: Record<string, number> | undefined; | ||
duplexMode?: ('simplex' | 'shortEdge' | 'longEdge') | undefined; | ||
dpi?: Dpi | undefined; | ||
} | ||
@@ -118,7 +118,7 @@ interface WindowMovementOptions { | ||
export interface FindInPageOptions { | ||
forward?: boolean; | ||
findNext?: boolean; | ||
matchCase?: boolean; | ||
wordStart?: boolean; | ||
medialCapitalAsWordStart?: boolean; | ||
forward?: boolean | undefined; | ||
findNext?: boolean | undefined; | ||
matchCase?: boolean | undefined; | ||
wordStart?: boolean | undefined; | ||
medialCapitalAsWordStart?: boolean | undefined; | ||
} | ||
@@ -125,0 +125,0 @@ /** |
@@ -5,45 +5,45 @@ import { DownloadPreloadOption } from '../system/download-preload'; | ||
export interface WindowOption { | ||
accelerator?: Accelerator; | ||
alphaMask?: RGB; | ||
alwaysOnTop?: boolean; | ||
api?: Api; | ||
applicationIcon?: string; | ||
aspectRatio?: number; | ||
autoShow?: boolean; | ||
backgroundColor?: string; | ||
contentNavigation?: ContentNavigation; | ||
contextMenu?: boolean; | ||
contextMenuSettings?: ContextMenuSettings; | ||
cornerRounding?: CornerRounding; | ||
accelerator?: Accelerator | undefined; | ||
alphaMask?: RGB | undefined; | ||
alwaysOnTop?: boolean | undefined; | ||
api?: Api | undefined; | ||
applicationIcon?: string | undefined; | ||
aspectRatio?: number | undefined; | ||
autoShow?: boolean | undefined; | ||
backgroundColor?: string | undefined; | ||
contentNavigation?: ContentNavigation | undefined; | ||
contextMenu?: boolean | undefined; | ||
contextMenuSettings?: ContextMenuSettings | undefined; | ||
cornerRounding?: CornerRounding | undefined; | ||
customContext?: any; | ||
customData?: any; | ||
customRequestHeaders?: Array<CustomRequestHeaders>; | ||
defaultCentered?: boolean; | ||
defaultHeight?: number; | ||
defaultLeft?: number; | ||
defaultTop?: number; | ||
defaultWidth?: number; | ||
frame?: boolean; | ||
hideOnClose?: boolean; | ||
icon?: string; | ||
maxHeight?: number; | ||
maximizable?: boolean; | ||
maxWidth?: number; | ||
minHeight?: number; | ||
minimizable?: boolean; | ||
minWidth?: number; | ||
name?: string; | ||
opacity?: number; | ||
preloadScripts?: Array<DownloadPreloadOption>; | ||
resizable?: boolean; | ||
resizeRegion?: ResizeRegion; | ||
saveWindowState?: boolean; | ||
shadow?: boolean; | ||
showTaskbarIcon?: boolean; | ||
smallWindow?: boolean; | ||
state?: string; | ||
taskbarIconGroup?: string; | ||
url?: string; | ||
uuid?: string; | ||
waitForPageLoad?: boolean; | ||
customRequestHeaders?: Array<CustomRequestHeaders> | undefined; | ||
defaultCentered?: boolean | undefined; | ||
defaultHeight?: number | undefined; | ||
defaultLeft?: number | undefined; | ||
defaultTop?: number | undefined; | ||
defaultWidth?: number | undefined; | ||
frame?: boolean | undefined; | ||
hideOnClose?: boolean | undefined; | ||
icon?: string | undefined; | ||
maxHeight?: number | undefined; | ||
maximizable?: boolean | undefined; | ||
maxWidth?: number | undefined; | ||
minHeight?: number | undefined; | ||
minimizable?: boolean | undefined; | ||
minWidth?: number | undefined; | ||
name?: string | undefined; | ||
opacity?: number | undefined; | ||
preloadScripts?: Array<DownloadPreloadOption> | undefined; | ||
resizable?: boolean | undefined; | ||
resizeRegion?: ResizeRegion | undefined; | ||
saveWindowState?: boolean | undefined; | ||
shadow?: boolean | undefined; | ||
showTaskbarIcon?: boolean | undefined; | ||
smallWindow?: boolean | undefined; | ||
state?: string | undefined; | ||
taskbarIconGroup?: string | undefined; | ||
url?: string | undefined; | ||
uuid?: string | undefined; | ||
waitForPageLoad?: boolean | undefined; | ||
} | ||
@@ -61,30 +61,30 @@ export interface CustomRequestHeaders { | ||
export interface ResizeRegion { | ||
size?: number; | ||
bottomRightCorner?: number; | ||
size?: number | undefined; | ||
bottomRightCorner?: number | undefined; | ||
sides?: { | ||
top?: boolean; | ||
bottom?: boolean; | ||
left?: boolean; | ||
right?: boolean; | ||
}; | ||
top?: boolean | undefined; | ||
bottom?: boolean | undefined; | ||
left?: boolean | undefined; | ||
right?: boolean | undefined; | ||
} | undefined; | ||
} | ||
export interface Accelerator { | ||
devtools?: boolean; | ||
reload?: boolean; | ||
reloadIgnoringCache?: boolean; | ||
zoom?: boolean; | ||
devtools?: boolean | undefined; | ||
reload?: boolean | undefined; | ||
reloadIgnoringCache?: boolean | undefined; | ||
zoom?: boolean | undefined; | ||
} | ||
export interface Api { | ||
iframe?: { | ||
crossOriginInjection?: boolean; | ||
sameOriginInjection?: boolean; | ||
}; | ||
crossOriginInjection?: boolean | undefined; | ||
sameOriginInjection?: boolean | undefined; | ||
} | undefined; | ||
} | ||
export interface ContentNavigation { | ||
whitelist?: string[]; | ||
blacklist?: string[]; | ||
whitelist?: string[] | undefined; | ||
blacklist?: string[] | undefined; | ||
} | ||
export interface CornerRounding { | ||
height?: number; | ||
width?: number; | ||
height?: number | undefined; | ||
width?: number | undefined; | ||
} |
export interface Identity { | ||
uuid: string; | ||
name?: string; | ||
name?: string | undefined; | ||
entityType?: any; | ||
} | ||
export interface GroupWindowIdentity extends Identity { | ||
isExternalWindow?: boolean; | ||
isExternalWindow?: boolean | undefined; | ||
} | ||
interface NativeIdOptional extends Identity { | ||
nativeId?: string; | ||
nativeId?: string | undefined; | ||
} | ||
interface UuidOptional { | ||
nativeId: string; | ||
name?: string; | ||
uuid?: string; | ||
name?: string | undefined; | ||
uuid?: string | undefined; | ||
} | ||
export declare type ExternalWindowIdentity = NativeIdOptional | UuidOptional; | ||
export {}; |
export declare type AnchorType = 'top-left' | 'top-right' | 'bottom-left' | 'bottom-right'; | ||
export interface TransitionOptions { | ||
interrupt: boolean; | ||
tween?: string; | ||
tween?: string | undefined; | ||
} | ||
export interface Transition { | ||
opacity?: Opacity; | ||
position?: Position; | ||
size?: Size; | ||
opacity?: Opacity | undefined; | ||
position?: Position | undefined; | ||
size?: Size | undefined; | ||
} | ||
@@ -20,3 +20,3 @@ export interface Size extends TransitionBase { | ||
duration: number; | ||
relative?: boolean; | ||
relative?: boolean | undefined; | ||
} | ||
@@ -32,4 +32,4 @@ export interface Position extends TransitionBase { | ||
left: number; | ||
right?: number; | ||
bottom?: number; | ||
right?: number | undefined; | ||
bottom?: number | undefined; | ||
} | ||
@@ -44,4 +44,4 @@ export declare type ViewBounds = Pick<Bounds, Exclude<keyof Bounds, 'right' | 'bottom'>>; | ||
enable: boolean; | ||
devtools?: boolean; | ||
reload?: boolean; | ||
devtools?: boolean | undefined; | ||
reload?: boolean | undefined; | ||
} |
@@ -46,3 +46,3 @@ /// <reference types="node" /> | ||
payload: T; | ||
correlationId?: number; | ||
correlationId?: number | undefined; | ||
} | ||
@@ -49,0 +49,0 @@ export declare class EventMessage implements Message<RuntimeEvent> { |
@@ -14,7 +14,7 @@ /// <reference types="node" /> | ||
version: string; | ||
fallbackVersion?: string; | ||
securityRealm?: string; | ||
verboseLogging?: boolean; | ||
arguments?: string; | ||
rvmDir?: string; | ||
fallbackVersion?: string | undefined; | ||
securityRealm?: string | undefined; | ||
verboseLogging?: boolean | undefined; | ||
arguments?: string | undefined; | ||
rvmDir?: string | undefined; | ||
} | ||
@@ -26,17 +26,17 @@ export interface ServiceConfig { | ||
export interface BaseConfig { | ||
uuid?: string; | ||
address?: string; | ||
name?: string; | ||
nonPersistent?: boolean; | ||
runtimeClient?: boolean; | ||
licenseKey?: string; | ||
uuid?: string | undefined; | ||
address?: string | undefined; | ||
name?: string | undefined; | ||
nonPersistent?: boolean | undefined; | ||
runtimeClient?: boolean | undefined; | ||
licenseKey?: string | undefined; | ||
client?: any; | ||
manifestUrl?: string; | ||
manifestUrl?: string | undefined; | ||
startupApp?: any; | ||
lrsUrl?: string; | ||
assetsUrl?: string; | ||
devToolsPort?: number; | ||
installerUI?: boolean; | ||
runtime?: RuntimeConfig; | ||
services?: ServiceConfig[]; | ||
lrsUrl?: string | undefined; | ||
assetsUrl?: string | undefined; | ||
devToolsPort?: number | undefined; | ||
installerUI?: boolean | undefined; | ||
runtime?: RuntimeConfig | undefined; | ||
services?: ServiceConfig[] | undefined; | ||
appAssets?: [{ | ||
@@ -48,5 +48,5 @@ src: string; | ||
args: string; | ||
}]; | ||
customItems?: [any]; | ||
timeout?: number; | ||
}] | undefined; | ||
customItems?: [any] | undefined; | ||
timeout?: number | undefined; | ||
} | ||
@@ -53,0 +53,0 @@ export interface ConfigWithUuid extends BaseConfig { |
{ | ||
"name": "@types/openfin", | ||
"version": "49.0.2", | ||
"version": "49.0.3", | ||
"description": "TypeScript definitions for OpenFin API", | ||
"homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/openfin", | ||
"license": "MIT", | ||
@@ -45,4 +46,4 @@ "contributors": [ | ||
}, | ||
"typesPublisherContentHash": "89b2eecbfae07ac311ea3437e5e11b3d7ff3ff919087b7e55fc6c888ef4e74c4", | ||
"typeScriptVersion": "3.0" | ||
"typesPublisherContentHash": "5fcd638e6e0ef5a210637ebd28fc18585e9df35896fc2a61a46a95512944ea8e", | ||
"typeScriptVersion": "3.6" | ||
} |
@@ -11,3 +11,3 @@ # Installation | ||
### Additional Details | ||
* Last updated: Fri, 15 May 2020 11:31:33 GMT | ||
* Last updated: Thu, 08 Jul 2021 18:51:55 GMT | ||
* Dependencies: [@types/node](https://npmjs.com/package/@types/node), [@types/ws](https://npmjs.com/package/@types/ws) | ||
@@ -14,0 +14,0 @@ * Global values: `fin` |
Sorry, the diff of this file is too big to display
No website
QualityPackage does not have a website.
Found 1 instance in 1 package
288802
0.91%0
-100%