From 8ea5ebb99e69c9182785b63e7f7b405beaf2b25c Mon Sep 17 00:00:00 2001 From: Yuta Saito Date: Thu, 22 Jan 2026 10:59:17 +0900 Subject: [PATCH] TS2Swift: Remove unused type definitions --- .../TS2Swift/JavaScript/src/index.d.ts | 36 ------------------- 1 file changed, 36 deletions(-) diff --git a/Plugins/BridgeJS/Sources/TS2Swift/JavaScript/src/index.d.ts b/Plugins/BridgeJS/Sources/TS2Swift/JavaScript/src/index.d.ts index b53e2420..e5af49d9 100644 --- a/Plugins/BridgeJS/Sources/TS2Swift/JavaScript/src/index.d.ts +++ b/Plugins/BridgeJS/Sources/TS2Swift/JavaScript/src/index.d.ts @@ -11,39 +11,3 @@ export type Parameter = { name: string; type: BridgeType; } - -export type Effects = { - isAsync: boolean; -} - -export type ImportFunctionSkeleton = { - name: string; - parameters: Parameter[]; - returnType: BridgeType; - effects: Effects; - documentation: string | undefined; -} - -export type ImportConstructorSkeleton = { - parameters: Parameter[]; -} - -export type ImportPropertySkeleton = { - name: string; - type: BridgeType; - isReadonly: boolean; - documentation: string | undefined; -} - -export type ImportTypeSkeleton = { - name: string; - documentation: string | undefined; - constructor?: ImportConstructorSkeleton; - properties: ImportPropertySkeleton[]; - methods: ImportFunctionSkeleton[]; -} - -export type ImportSkeleton = { - functions: ImportFunctionSkeleton[]; - types: ImportTypeSkeleton[]; -}