Files
2025-02-28 13:27:28 +01:00

12 lines
156 B
TypeScript

import { Foo, Bar, Baz } from "somewhere";
export function f(this: Foo) {}
export class C {
m(this: Bar) {}
}
export default {
foo(this: Baz) {}
}