From d738374ff148f1d859eb30fa3f8997a854d45f4c Mon Sep 17 00:00:00 2001 From: Adam Matthiesen Date: Thu, 25 Jan 2024 01:28:04 -0800 Subject: [PATCH] s --- packages/astro-ghostcms/src/api/api.d.ts | 4 ++++ packages/astro-ghostcms/src/virtual/virtual.d.ts | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) create mode 100644 packages/astro-ghostcms/src/api/api.d.ts diff --git a/packages/astro-ghostcms/src/api/api.d.ts b/packages/astro-ghostcms/src/api/api.d.ts new file mode 100644 index 00000000..5f84dc9b --- /dev/null +++ b/packages/astro-ghostcms/src/api/api.d.ts @@ -0,0 +1,4 @@ +declare module '@matthiesenxyz/astro-ghostcms/api' { + const api = import('./index') + export default api; +} \ No newline at end of file diff --git a/packages/astro-ghostcms/src/virtual/virtual.d.ts b/packages/astro-ghostcms/src/virtual/virtual.d.ts index 4e42dc63..8515a56a 100644 --- a/packages/astro-ghostcms/src/virtual/virtual.d.ts +++ b/packages/astro-ghostcms/src/virtual/virtual.d.ts @@ -1,4 +1,4 @@ declare module 'virtual:@matthiesenxyz/astro-ghostcms/config' { - const Config: import('./UserConfigSchema').UserConfig; + const Config: import('../schemas/UserConfigSchema').UserConfig; export default Config; } \ No newline at end of file