-
-
Notifications
You must be signed in to change notification settings - Fork 4.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(types): Add Missing Methods & Props to "./packages/shell-electron…
…/types" (#1397)
- Loading branch information
1 parent
80924e5
commit b71ae4a
Showing
2 changed files
with
17 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,15 @@ | ||
export function connect(host?: string, port?: number|string): void | ||
import type { VueConstructor } from "vue"; | ||
|
||
interface ConnectOptions { | ||
io?: Function; | ||
showToast?: Function; | ||
app?: VueConstructor | VueConstructor[]; | ||
} | ||
|
||
export function connect( | ||
host?: string, | ||
port?: number | string, | ||
options?: ConnectOptions | ||
): void; | ||
|
||
export function init(vue: VueConstructor | VueConstructor[]): void; |