Skip to content

Commit 7ba8e48

Browse files
committed
lint: fixed errors
1 parent 41d44cf commit 7ba8e48

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

packages/sdk/src/server/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import {
66
AccessToken, ClientCredentials,
77
} from "simple-oauth2";
88
import {
9-
Account, BaseClient, GetAccountOpts, type AppInfo, type ConnectTokenResponse,
9+
Account, BaseClient, type AppInfo, type ConnectTokenResponse,
1010
} from "../shared";
1111
import { ServerAsyncResponseManager } from "./async";
1212
export * from "../shared";

packages/sdk/src/shared/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -592,7 +592,7 @@ export abstract class BaseClient {
592592
dynamic_props_id: opts.dynamicPropsId,
593593
environment: this.environment,
594594
};
595-
return await this.makeConnectRequestAsync<{}>("/components/props", {
595+
return await this.makeConnectRequestAsync<Record<string, any>>("/components/props", {
596596
// TODO trigger
597597
method: "POST",
598598
body,

0 commit comments

Comments
 (0)