prettier/tests/union_new/issue-824.js

17 lines
230 B
JavaScript

import { B, C } from "./issue-824-helper";
type K = B | C;
type I = {
which(): number;
};
export default class A {
static foo(p: K): bool {
return false;
}
static bar(p: I & K): bool {
return this.foo(p);
}
}