Files
codeql/javascript/extractor/tests/ts/input/interfaces.ts
2018-11-07 07:48:25 +00:00

12 lines
135 B
TypeScript

interface MyInterface {
foo();
bar(x: number): string;
field: number;
}
namespace Foo {
export interface I {
bar();
}
}