UNPKG

250 BJavaScriptView Raw
1import { Mixin } from 'lodash-decorators';
2
3const Testeable = {
4 isTesteable() {
5 return true;
6 }
7}
8
9@Mixin(Testeable)
10export class Extension {
11 constructor() {
12 this._internal = true;
13 }
14
15 isInternal() {
16 return this._internal;
17 }
18}
19