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 Todo from './todo';
/* TODO FINISHED */
class TodoFinished extends Todo {
static is ( str: string ) {
return Item.is ( str, Consts.regexes.todoFinished );
}
}
/* EXPORT */
export default TodoFinished;