import { ReactiveObject } from "../../src/reactive-object"; import { MyOtherObject } from "./my-other-object"; import { Observable } from "rxjs/Rx"; export declare class MyObject extends ReactiveObject { child: MyOtherObject; otherProp: string; prop1: string; prop2: string; prop3: string; newTodo: MyOtherObject; canAddNewTodo(): Observable; private command; constructor(); }