Skip to content

Commit 442d46e

Browse files
committed
syntax error
1 parent 4495586 commit 442d46e

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@beekeeperstudio/plugin",
3-
"version": "1.2.0",
3+
"version": "1.2.1",
44
"description": "A simple TypeScript wrapper to send messages from your Beekeeper Studio plugin to the main app.",
55
"main": "dist/index.js",
66
"types": "dist/index.d.ts",

src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ export async function setTabTitle(title: string): Promise<SetTabTitleResponse['r
5656
}
5757

5858
export async function getViewState<T>(): Promise<GetViewStateResponse<T>['result']> {
59-
return await request({ name: "getViewState", args: void });
59+
return await request({ name: "getViewState", args: void 0 });
6060
}
6161

6262
export async function setViewState<T>(state: T): Promise<SetViewStateResponse['result']> {

0 commit comments

Comments
 (0)