UNPKG

kawazu

Version:

kawazu CLI tool for real-time chat in your editor

12 lines (11 loc) 372 B
export interface EditorController { name: string; detect(): Promise<boolean>; forceRefresh(filePath: string): Promise<boolean>; openFile(filePath: string): Promise<boolean>; } export declare class EditorManager { private controllers; forceRefreshFile(filePath: string): Promise<boolean>; openFileInEditor(filePath: string): Promise<boolean>; }