Skip to content

Commit 91fb541

Browse files
committed
fix(js core): remove type import duplicates
1 parent ed1e597 commit 91fb541

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

src/generator/core.clj

-3
Original file line numberDiff line numberDiff line change
@@ -183,11 +183,8 @@
183183
(io/make-parents (io/file path package "indexPackage.ts"))
184184
(with-open [r (io/writer (io/file path package "indexPackage.ts"))]
185185
(.write r "/** GENERATED BY zen-cli\nDON'T MODIFY MANUALLY */\n\n")
186-
(mapv #(when-not (contains? #{"string" "boolean"} %) (.write r (format "export * from './%s'\n" %)))
187-
(keys (get @r/schema package)))
188186
(mapv #(when-not (contains? #{"string" "boolean"} %) (.write r (format "import { %s } from './%s'\n" % %)))
189187
(keys (get @r/schema package)))
190-
(.write r "\n\n")
191188
(.write r "export interface SubsSubscription {\nid?:string;\nresourceType: 'SubsSubscription';\nstatus: 'active' | 'off';trigger: Partial<Record<ResourceType, { event: Array<'all' | 'create' | 'update' | 'delete'>; filter?: unknown }>>; channel: {\ntype: 'rest-hook';\nendpoint: string;\npayload?: { content: string; contentType: string; context: unknown };headers?: Record<string, string>;\ntimeout?: number;\n};\n}")
192189
(.write r "export type ResourceTypeMap = {\n SubsSubscription: SubsSubscription;\n User: Record<string,any>;\n")
193190
(mapv #(when-not (contains? #{"string" "boolean"} %) (.write r (format " %s: %s;\n" % %)))

0 commit comments

Comments
 (0)