mirror of
https://github.com/github/codeql.git
synced 2025-12-17 01:03:14 +01: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;
|
|
}
|