Skip to content

Commit 24473f9

Browse files
committed
fix lint errors
1 parent c204d9d commit 24473f9

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

packages/sdk/src/shared/component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ export type V1Component<T extends ConfigurableProps = any> = { // eslint-disable
9595
configurable_props: T;
9696
};
9797

98-
export type V1DeployedComponent<T extends ConfigurableProps = any> = {
98+
export type V1DeployedComponent<T extends ConfigurableProps = any> = { // eslint-disable-line @typescript-eslint/no-explicit-any
9999
id: string;
100100
owner_id: string;
101101
component_id: string;

packages/sdk/src/shared/index.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,10 @@ import type {
44
AsyncErrorResponse,
55
AsyncResponseManager,
66
} from "./async.ts";
7-
import type { V1Component, V1DeployedComponent } from "./component.ts";
7+
import type {
8+
V1Component,
9+
V1DeployedComponent,
10+
} from "./component.ts";
811
export * from "./component.ts";
912
import { version as sdkVersion } from "../version.ts";
1013

0 commit comments

Comments
 (0)