From a4ac02da081c1dfea42e0d434900de41ca692e11 Mon Sep 17 00:00:00 2001 From: Chris Date: Tue, 5 Nov 2024 22:41:23 +0100 Subject: [PATCH] chore: wip --- fixtures/{wip => input}/module.ts | 0 fixtures/output/module.d.ts | 12 ++++++++++++ 2 files changed, 12 insertions(+) rename fixtures/{wip => input}/module.ts (100%) create mode 100644 fixtures/output/module.d.ts diff --git a/fixtures/wip/module.ts b/fixtures/input/module.ts similarity index 100% rename from fixtures/wip/module.ts rename to fixtures/input/module.ts diff --git a/fixtures/output/module.d.ts b/fixtures/output/module.d.ts new file mode 100644 index 0000000..dfac1e8 --- /dev/null +++ b/fixtures/output/module.d.ts @@ -0,0 +1,12 @@ +declare module '@stacksjs/some-module' { + interface DtsGenerationConfig { + customPlugins?: Array<{ + name: string + transform: (code: string) => string + }> + } + + interface DtsGenerationResult { + customPluginResults?: Record + } +} \ No newline at end of file