UNPKG

vscode-todo-plus

Version:

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

23 lines (12 loc) 281 B
/* IMPORT */ import Consts from '../../consts'; import Item from './item'; import Todo from './todo'; /* TODO BOX */ class TodoBox extends Todo { static is ( str: string ) { return Item.is ( str, Consts.regexes.todoBox ); } } /* EXPORT */ export default TodoBox;