mirror of
https://github.com/github/codeql.git
synced 2026-03-29 11:48:16 +02: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) {}
|
|
}
|