UNPKG

@mui/internal-docs-infra

Version:

MUI Infra - internal documentation creation tools.

12 lines 290 B
import type { CommandModule } from 'yargs'; type Args = { port: number; script: string; 'playwright-version': string; headed: boolean; workspace: boolean; _: (string | number)[]; '--'?: string[]; }; declare const runBrowser: CommandModule<{}, Args>; export default runBrowser;