extension-develop
Version:
The develop step of Extension.js
15 lines (14 loc) • 397 B
TypeScript
import { type DevOptions } from '../../develop-lib/config-types';
export interface PluginInterface extends PluginOptions {
manifestPath: string;
}
export interface PluginOptions {
browser?: DevOptions['browser'];
port?: string | number;
stats?: boolean;
autoReload?: boolean;
instanceId?: string;
source?: string;
watchSource?: boolean;
startingUrl?: string;
}