• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1export class h {
2    k: string = "";
3    l: number = 1;
4    m() {
5        const j = 2;
6        return this.k + this.l;
7    }
8}
9export function g() {
10}
11export interface i {
12    o: string;
13    p: number;
14}
15