1 2 3 4 5 6 7 8 9 10 11 12 13
export class KeyFrame{ private _document:any; constructor(){ this._document = new Document(); } get document(){ return this._document; } }