UNPKG

vscode-todo-plus

Version:

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

22 lines (11 loc) 254 B
/* IMPORT */ import Consts from '../../consts'; import Item from './item'; /* COMMENT */ class Comment extends Item { static is ( str: string ) { return super.is ( str, Consts.regexes.comment ); } } /* EXPORT */ export default Comment;