aboutsummaryrefslogtreecommitdiff
path: root/src/client/views/nodes/KeyFrame.tsx
blob: adc97fe4a945e7db9a26d37b34fdef9d5320f639 (plain)
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; 
    }

}