##// END OF EJS Templates
Added tag v1.2.0-rc for changeset 43a2828f8abe
Added tag v1.2.0-rc for changeset 43a2828f8abe

File last commit:

r50:7a4fac383b10 di-typescript
r52:4428a3305955 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;
}
}