Total Complexity | 1 |
Complexity/F | 1 |
Lines of Code | 12 |
Function Count | 1 |
Duplicated Lines | 0 |
Ratio | 0 % |
Coverage | 100% |
Changes | 0 |
1 | export interface ReTweetableInterface { |
||
2 | retweetError: string; |
||
3 | |||
4 | isReTweetable: () => boolean; |
||
5 | } |
||
6 | |||
7 | 3 | export abstract class ReTweetableAbstract implements ReTweetableInterface { |
|
8 | 160 | retweetError = ''; |
|
9 | |||
10 | abstract isReTweetable(): boolean; |
||
11 | } |
||
12 |