Files
tabby/tabby-core/src/api/selector.ts
2021-09-02 22:30:21 +02:00

11 lines
215 B
TypeScript

export interface SelectorOption<T> {
name: string
description?: string
group?: string
result?: T
icon?: string
freeInputPattern?: string
color?: string
callback?: (string?) => void
}