File tree Expand file tree Collapse file tree 1 file changed +0
-36
lines changed
Plugins/BridgeJS/Sources/TS2Swift/JavaScript/src Expand file tree Collapse file tree 1 file changed +0
-36
lines changed Original file line number Diff line number Diff 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- }
You can’t perform that action at this time.
0 commit comments