Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
it('should work with classes', () => {
class Test extends mixins(ClassMixinA, ClassMixinB)<
{ p3: string },
{ d31: number }
> {
static props = {
p3: String
}
d3 = 1
data(): any {
return {
d31: 2
}
}
get c3() {
return this.d3 + this.d31