You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
module Test {
|
|
|
|
var hoge = 1, foo = hoge;
|
|
var x = hoge;
|
|
|
|
/**
|
|
*
|
|
* @param bar An argument
|
|
*
|
|
**/
|
|
var someFunc = (bar: string) => { };
|
|
|
|
var otherFunc = () => {
|
|
var prefix;
|
|
console.log(' prefix ');
|
|
console.log(" prefix ");
|
|
console.log(` prefix `);
|
|
}
|
|
|
|
}
|