diff options
author | 2023-03-10 16:19:57 +0100 | |
---|---|---|
committer | 2023-03-10 16:19:57 +0100 | |
commit | c44aa15534007c3ac320fa6e632c760ddb2ce2f3 (patch) | |
tree | 8f200fb52627f228685dfc9e83ef067cdde31d91 /packages/astro-rss/src/util.ts | |
parent | d37dc7c71a688fe25cfdd7cfa3594ffe1e0a6d6e (diff) | |
download | astro-c44aa15534007c3ac320fa6e632c760ddb2ce2f3.tar.gz astro-c44aa15534007c3ac320fa6e632c760ddb2ce2f3.tar.zst astro-c44aa15534007c3ac320fa6e632c760ddb2ce2f3.zip |
fix: Enforce the usage of type imports when possible (#6502)
Diffstat (limited to 'packages/astro-rss/src/util.ts')
-rw-r--r-- | packages/astro-rss/src/util.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/astro-rss/src/util.ts b/packages/astro-rss/src/util.ts index a87828bfc..63a8c5568 100644 --- a/packages/astro-rss/src/util.ts +++ b/packages/astro-rss/src/util.ts @@ -1,5 +1,5 @@ -import { z } from 'astro/zod'; -import { RSSOptions } from './index'; +import type { z } from 'astro/zod'; +import type { RSSOptions } from './index'; /** Normalize URL to its canonical form */ export function createCanonicalURL( |