Skip to content

Commit 8ea5ebb

Browse files
TS2Swift: Remove unused type definitions
1 parent 724e62e commit 8ea5ebb

File tree

1 file changed

+0
-36
lines changed
  • Plugins/BridgeJS/Sources/TS2Swift/JavaScript/src

1 file changed

+0
-36
lines changed

Plugins/BridgeJS/Sources/TS2Swift/JavaScript/src/index.d.ts

Lines changed: 0 additions & 36 deletions
Original file line numberDiff line numberDiff line change
@@ -11,39 +11,3 @@ export type Parameter = {
1111
name: string;
1212
type: BridgeType;
1313
}
14-
15-
export type Effects = {
16-
isAsync: boolean;
17-
}
18-
19-
export type ImportFunctionSkeleton = {
20-
name: string;
21-
parameters: Parameter[];
22-
returnType: BridgeType;
23-
effects: Effects;
24-
documentation: string | undefined;
25-
}
26-
27-
export type ImportConstructorSkeleton = {
28-
parameters: Parameter[];
29-
}
30-
31-
export type ImportPropertySkeleton = {
32-
name: string;
33-
type: BridgeType;
34-
isReadonly: boolean;
35-
documentation: string | undefined;
36-
}
37-
38-
export type ImportTypeSkeleton = {
39-
name: string;
40-
documentation: string | undefined;
41-
constructor?: ImportConstructorSkeleton;
42-
properties: ImportPropertySkeleton[];
43-
methods: ImportFunctionSkeleton[];
44-
}
45-
46-
export type ImportSkeleton = {
47-
functions: ImportFunctionSkeleton[];
48-
types: ImportTypeSkeleton[];
49-
}

0 commit comments

Comments
 (0)