UNPKG

vscode-todo-plus

Version:

Manage todo lists with ease. Powerful, easy to use and customizable.

23 lines (12 loc) 321 B
/* IMPORT */ import Consts from '../../consts'; import Item from './item'; import TodoFinished from './todo'; /* TODO CANCELLED */ class TodoCancelled extends TodoFinished { static is ( str: string ) { return Item.is ( str, Consts.regexes.todoCancelled ); } } /* EXPORT */ export default TodoCancelled;