blob: fb072f4d6c7302db312c1363c48ff681c1dac92d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
import { Doc } from '../../../new_fields/Doc';
export class KeyFrame {
private _document: Doc;
constructor() {
this._document = new Doc();
}
get doc():Doc {
return this._document;
}
}
|