##// END OF EJS Templates
changed the project structure
changed the project structure

File last commit:

r46:747292a4f3ac di-typescript
r49:1a91da7b15f7 di-typescript
Show More
Bar.ts
12 lines | 182 B | video/mp2t | TypeScriptLexer
import { Foo } from "./Foo";
export class Bar {
name = "bar";
foo: Foo;
constructor(_opts) {
if (_opts && _opts.foo)
this.foo = _opts.foo;
}
}