diff options
author | 2023-03-10 16:19:57 +0100 | |
---|---|---|
committer | 2023-03-10 16:19:57 +0100 | |
commit | c44aa15534007c3ac320fa6e632c760ddb2ce2f3 (patch) | |
tree | 8f200fb52627f228685dfc9e83ef067cdde31d91 /packages/integrations/react/src | |
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/integrations/react/src')
-rw-r--r-- | packages/integrations/react/src/index.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/integrations/react/src/index.ts b/packages/integrations/react/src/index.ts index 81d5b5da4..21ef3568c 100644 --- a/packages/integrations/react/src/index.ts +++ b/packages/integrations/react/src/index.ts @@ -1,4 +1,4 @@ -import { AstroIntegration } from 'astro'; +import type { AstroIntegration } from 'astro'; import { version as ReactVersion } from 'react-dom'; function getRenderer() { |