mirror of
https://github.com/github/codeql.git
synced 2025-12-17 09:13:20 +01:00
12 lines
156 B
TypeScript
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) {}
|
|
}
|