From 670fae0eb510b460a93c5dd948eedbc066870ebc Mon Sep 17 00:00:00 2001 From: Kacper Majorkowski Date: Mon, 16 Feb 2026 23:52:12 +0100 Subject: [PATCH] init --- src/api/api.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/api/api.ts b/src/api/api.ts index 6cc7cf3..6c4d48b 100644 --- a/src/api/api.ts +++ b/src/api/api.ts @@ -1,5 +1,5 @@ import * as photoshop from "./photoshop"; // BOLT_PHXS_ONLY -import * as indesgin from "./indesign"; // BOLT_IDSN_ONLY +import * as indesign from "./indesign"; // BOLT_IDSN_ONLY import * as premierepro from "./premierepro"; // BOLT_PPRO_ONLY import * as illustrator from "./illustrator"; // BOLT_ILST_ONLY import { uxp } from "../globals"; @@ -12,14 +12,14 @@ const hostName = let host = {} as & typeof uxpLib // BOLT_PHXS_ONLY & typeof photoshop // BOLT_PHXS_ONLY - & typeof indesgin // BOLT_IDSN_ONLY + & typeof indesign // BOLT_IDSN_ONLY & typeof premierepro // BOLT_PPRO_ONLY & typeof illustrator; // BOLT_ILST_ONLY export type API = typeof host & typeof uxpLib; if (hostName.startsWith("photoshop")) host = photoshop; // BOLT_PHXS_ONLY -if (hostName.startsWith("indesign")) host = indesgin; // BOLT_IDSN_ONLY +if (hostName.startsWith("indesign")) host = indesign; // BOLT_IDSN_ONLY if (hostName.startsWith("premierepro")) host = premierepro; // BOLT_PPRO_ONLY if (hostName.startsWith("illustrator")) host = illustrator; // BOLT_ILST_ONLY