9 lines
330 B
TypeScript
9 lines
330 B
TypeScript
![]() |
import type yargs from 'yargs-parser';
|
||
|
import type { LogOptions } from '../../core/logger/core.js';
|
||
|
interface PreviewOptions {
|
||
|
flags: yargs.Arguments;
|
||
|
logging: LogOptions;
|
||
|
}
|
||
|
export declare function preview({ flags, logging }: PreviewOptions): Promise<import("../../@types/astro.js").PreviewServer | undefined>;
|
||
|
export {};
|