rolldown
Version:
Fast JavaScript/TypeScript bundler in Rust with Rollup-compatible API.
16 lines (15 loc) • 530 B
TypeScript
import { type NormalizedCliOptions } from './normalize';
import type { Schema } from '../../types/schema';
export declare const flattenedSchema: Record<string, Schema>;
export declare const options: {
[k: string]: {
type: 'boolean' | 'string';
multiple: boolean;
short?: string;
default?: boolean | string | string[];
hint?: string;
description: string;
};
};
export type ParseArgsOptions = typeof options;
export declare function parseCliArguments(): NormalizedCliOptions;