export type Commands = Record unknown>; export type CoreSpec = { name: 'core'; config: { projectId: string; fixturesDir: string; fixtureFileSuffix: string; devServerOn: boolean; }; state: { commands: Commands; }; methods: { registerCommands(commands: Commands): () => void; runCommand(name: string): unknown; getProjectId(): string; getFixtureFileVars(): { fixturesDir: string; fixtureFileSuffix: string; }; isDevServerOn(): boolean; }; };