vscode-todo-plus
Version:
Manage todo lists with ease. Powerful, easy to use and customizable.
23 lines (12 loc) • 301 B
text/typescript
/* IMPORT */
import Consts from '../../consts';
import Item from './item';
import TodoFinished from './todo';
/* TODO DONE */
class TodoDone extends TodoFinished {
static is ( str: string ) {
return Item.is ( str, Consts.regexes.todoDone );
}
}
/* EXPORT */
export default TodoDone;