kjelsrud.dev/node_modules/astro/dist/cli/sync/index.d.ts
2023-07-19 21:31:30 +02:00

8 lines
322 B
TypeScript

import type yargs from 'yargs-parser';
import type { LogOptions } from '../../core/logger/core.js';
interface SyncOptions {
flags: yargs.Arguments;
logging: LogOptions;
}
export declare function sync({ flags, logging }: SyncOptions): Promise<import("../../core/sync/index.js").ProcessExit | undefined>;
export {};