mirror of
https://github.com/Tyriar/vscode-theme-generator.git
synced 2025-12-07 01:26:15 -08:00
28 lines
359 B
TypeScript
28 lines
359 B
TypeScript
import { a } from 'some-file';
|
|
|
|
/**
|
|
* Comment
|
|
*/
|
|
class Example {
|
|
private static readonly _a: string = 'foo';
|
|
|
|
private _c: boolean = true;
|
|
|
|
private get a() {
|
|
return Example._a;
|
|
}
|
|
|
|
public b(arg1: number, arg2: boolean): string {
|
|
return `${arg1} ${arg2}`;
|
|
}
|
|
}
|
|
|
|
function someFunction(arg1, arg2) {
|
|
}
|
|
|
|
var a = {
|
|
a: 1,
|
|
b: 2,
|
|
"c": true
|
|
}
|