mirror of
https://github.com/github/codeql.git
synced 2025-12-17 09:13:20 +01:00
10 lines
119 B
TypeScript
10 lines
119 B
TypeScript
declare module "X" {
|
|
module M {
|
|
export interface I {}
|
|
}
|
|
interface M {
|
|
method(): M.I;
|
|
}
|
|
export = M;
|
|
}
|