We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4495586 commit 442d46eCopy full SHA for 442d46e
2 files changed
package.json
@@ -1,6 +1,6 @@
1
{
2
"name": "@beekeeperstudio/plugin",
3
- "version": "1.2.0",
+ "version": "1.2.1",
4
"description": "A simple TypeScript wrapper to send messages from your Beekeeper Studio plugin to the main app.",
5
"main": "dist/index.js",
6
"types": "dist/index.d.ts",
src/index.ts
@@ -56,7 +56,7 @@ export async function setTabTitle(title: string): Promise<SetTabTitleResponse['r
56
}
57
58
export async function getViewState<T>(): Promise<GetViewStateResponse<T>['result']> {
59
- return await request({ name: "getViewState", args: void });
+ return await request({ name: "getViewState", args: void 0 });
60
61
62
export async function setViewState<T>(state: T): Promise<SetViewStateResponse['result']> {
0 commit comments