vscode-todo-plus
Version:
Manage todo lists with ease. Powerful, easy to use and customizable.
27 lines (14 loc) • 314 B
text/typescript
/* IMPORT */
import * as vscode from 'vscode';
import Group from './group';
/* FILE */
class File extends Group {
contextValue = 'file';
iconPath = vscode.ThemeIcon.File;
constructor ( obj, uri ) {
super ( obj, uri.label );
this.resourceUri = uri;
}
}
/* EXPORT */
export default File;