ryu1kn/vscode-partial-diff

View on GitHub
src/lib/commands/command.ts

Summary

Maintainability
A
0 mins
Test Coverage
import TextEditor from '../adaptors/text-editor';

export interface Command {
    execute(editor?: TextEditor): Promise<any> | any;
}