8 lines
241 B
TypeScript
8 lines
241 B
TypeScript
|
|
import type { BrowserAutomationProvider, GitMasterConfig } from "../../config/schema"
|
||
|
|
|
||
|
|
export interface SkillResolutionOptions {
|
||
|
|
gitMasterConfig?: GitMasterConfig
|
||
|
|
browserProvider?: BrowserAutomationProvider
|
||
|
|
disabledSkills?: Set<string>
|
||
|
|
}
|