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.
|
/***
|
|
* A JSX module.
|
|
*/
|
|
|
|
/**
|
|
* The class of this module.
|
|
*/
|
|
class Foo {
|
|
|
|
/**
|
|
* The constructor.
|
|
*/
|
|
function constructor() {
|
|
}
|
|
|
|
/**
|
|
* Do nothing.
|
|
*/
|
|
function method() : void {
|
|
|
|
}
|
|
}
|
|
|
|
// vim: set tabstop=2 shiftwidth=2 expandtab:
|
|
|