mirror of
https://github.com/github/codeql.git
synced 2026-03-28 10:18:17 +01:00
7 lines
92 B
TypeScript
7 lines
92 B
TypeScript
declare class Point {
|
|
x: number;
|
|
y: number;
|
|
constructor(x : number, y: number);
|
|
}
|
|
|