flipper-common
Advanced tools
Comparing version 0.166.0 to 0.167.0
@@ -294,2 +294,5 @@ import { FlipperDoctor } from './doctor'; | ||
}; | ||
export interface FlipperServerExecOptions { | ||
timeout: number; | ||
} | ||
export interface FlipperServer { | ||
@@ -299,2 +302,3 @@ connect(): Promise<void>; | ||
off<Event extends keyof FlipperServerEvents>(event: Event, callback: (payload: FlipperServerEvents[Event]) => void): void; | ||
exec<Event extends keyof FlipperServerCommands>(options: FlipperServerExecOptions, event: Event, ...args: Parameters<FlipperServerCommands[Event]>): ReturnType<FlipperServerCommands[Event]>; | ||
exec<Event extends keyof FlipperServerCommands>(event: Event, ...args: Parameters<FlipperServerCommands[Event]>): ReturnType<FlipperServerCommands[Event]>; | ||
@@ -301,0 +305,0 @@ close(): void; |
@@ -55,2 +55,3 @@ export declare enum Tristate { | ||
launcherEnabled: boolean; | ||
suppressPluginUpdateNotifications?: boolean; | ||
}; | ||
@@ -57,0 +58,0 @@ export declare type Platform = 'aix' | 'android' | 'darwin' | 'freebsd' | 'haiku' | 'linux' | 'openbsd' | 'sunos' | 'win32' | 'cygwin' | 'netbsd'; |
{ | ||
"name": "flipper-common", | ||
"version": "0.166.0", | ||
"version": "0.167.0", | ||
"description": "Server & UI shared Flipper utilities", | ||
@@ -5,0 +5,0 @@ "repository": "facebook/flipper", |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
125641
1808