rename dts to ts file (#3332)

* rename dts to ts file

* Create new-carrots-cough.md

* add back missing types
This commit is contained in:
Fred K. Schott 2022-05-10 14:54:01 -06:00 committed by GitHub
parent 1acbcaba9e
commit d04928e8f2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 8 additions and 3 deletions

View file

@ -0,0 +1,5 @@
---
"astro": patch
---
Fix an `import from '../core/build/types';` error

View file

@ -7,9 +7,9 @@ import type {
ComponentInstance,
SSRLoadedRenderer,
} from '../../@types/astro';
import type { ViteConfigWithSSR } from '../../create-vite';
import type { LogOptions } from '../../logger';
import type { RouteCache } from '../../render/route-cache.js';
import type { LogOptions } from '../logger/core';
import type { RouteCache } from '../render/route-cache';
import type { ViteConfigWithSSR } from '../create-vite';
export type ComponentPath = string;
export type ViteID = string;