mirror of
https://github.com/github/codeql.git
synced 2026-04-08 00:24:03 +02:00
16 lines
290 B
TypeScript
16 lines
290 B
TypeScript
export abstract class Foo {
|
|
abstract fooMethod(x: string): void;
|
|
}
|
|
|
|
export abstract class Foo2 {
|
|
abstract fooMethod(x: string): void;
|
|
}
|
|
|
|
export abstract class Foo3 {
|
|
abstract fooMethod(x: string): void;
|
|
}
|
|
|
|
export abstract class Foo4 {
|
|
abstract fooMethod(x: string): void;
|
|
}
|