mirror of
https://github.com/Eugeny/tabby.git
synced 2025-06-12 07:29:59 +00:00
13 lines
232 B
TypeScript
13 lines
232 B
TypeScript
export interface CLIEvent {
|
|
argv: any
|
|
cwd: string
|
|
secondInstance: boolean
|
|
}
|
|
|
|
export abstract class CLIHandler {
|
|
priority: number
|
|
firstMatchOnly: boolean
|
|
|
|
abstract handle (event: CLIEvent): Promise<boolean>
|
|
}
|