Fix types
This commit is contained in:
parent
4d479a964c
commit
b3ad03bbb0
4 changed files with 3 additions and 5 deletions
|
@ -1,6 +1,5 @@
|
|||
import type { AstroConfig, ManifestData, RouteCache } from '../../@types/astro';
|
||||
import type { LogOptions } from '../logger';
|
||||
import type { PageBuildData } from './types';
|
||||
|
||||
import fs from 'fs';
|
||||
import * as colors from 'kleur/colors';
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
import type { AstroConfig, ComponentInstance, GetStaticPathsResult, ManifestData, RouteCache, RouteData, RSSResult } from '../../@types/astro';
|
||||
import type { AllPagesData } from './types';
|
||||
import type { LogOptions } from '../logger';
|
||||
import type { ViteDevServer } from 'vite';
|
||||
import type { ViteDevServer } from '../vite.js';
|
||||
|
||||
import { fileURLToPath } from 'url';
|
||||
import * as colors from 'kleur/colors';
|
||||
|
|
|
@ -1,5 +1,4 @@
|
|||
import type { RenderedChunk } from 'rollup';
|
||||
import type { ViteDevServer } from 'vite';
|
||||
import type { ViteDevServer } from '../vite.js';
|
||||
import type { AstroConfig, RouteCache } from '../../@types/astro';
|
||||
import type { AllPagesData } from './types';
|
||||
import type { LogOptions } from '../logger';
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
import type { OutputChunk, PreRenderedChunk, RollupOutput } from 'rollup';
|
||||
import type { Plugin as VitePlugin, ViteDevServer } from '../vite';
|
||||
import type { Plugin as VitePlugin } from '../vite';
|
||||
import type { AstroConfig, RouteCache } from '../../@types/astro';
|
||||
import type { AllPagesData } from './types';
|
||||
import type { LogOptions } from '../logger';
|
||||
|
|
Loading…
Reference in a new issue