Fix types

This commit is contained in:
Matthew Phillips 2021-12-15 10:26:38 -05:00
parent 4d479a964c
commit b3ad03bbb0
4 changed files with 3 additions and 5 deletions

View file

@ -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';

View file

@ -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';

View file

@ -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';

View file

@ -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';