mirror of
https://github.com/github/codeql.git
synced 2025-12-18 18:10:39 +01:00
12 lines
162 B
TypeScript
12 lines
162 B
TypeScript
import { Foo, Bar, Baz } from "somewhere"; // OK
|
|
|
|
export function f(this: Foo) {}
|
|
|
|
export class C {
|
|
m(this: Bar) {}
|
|
}
|
|
|
|
export default {
|
|
foo(this: Baz) {}
|
|
}
|