interface Options { /** * Add a string prefix to the console log. * * @default '' */ prefix?: string; /** * Add a string suffix to the console log. * * @default '' */ suffix?: string; /** * Whether to disable the launch editor feature. * * @default false */ disableLaunchEditor?: boolean; } interface Extra { nuxtDevServerPort: number; } export type { Extra as E, Options as O };