UNPKG
@hygiene/core
Version:
latest (0.0.4)
0.0.4
0.0.3
0.0.2
Keep your TODOs and FIXMEs healthy
github.com/Leko/hygiene
Leko/hygiene
@hygiene/core
/
src
/
Resolver.ts
7 lines
(5 loc)
•
229 B
text/typescript
View Raw
1
2
3
4
5
6
7
import
{ AnnotatedComment } from
"./AnnotatedComment"
; export
interface
Resolver
<
Annotation
> { isMine(
annotation
: Annotation):
annotation
is
Annotation; isResolved(comment: AnnotatedComment<Annotation>): Promise<boolean>; }