UNPKG

utquidem

Version:

The meta-framework suite designed from scratch for frontend-focused modern web development.

17 lines (13 loc) 367 B
import type { InputOptions as RollupInputOptions, IsExternal, OutputOptions as RollupOutputOptions, } from 'rollup'; export type InputOptions = Omit<RollupInputOptions, 'input' | 'external'> & { input?: EntryInput; external?: IsExternal; }; export type OutputOptions = RollupOutputOptions; export interface EntryInput { [entryAlias: string]: string; }