#627 Add footnotes relationships
This commit is contained in:
21
src/file/footnotes-wrapper.ts
Normal file
21
src/file/footnotes-wrapper.ts
Normal file
@ -0,0 +1,21 @@
|
||||
import { IViewWrapper } from "./document-wrapper";
|
||||
import { FootNotes } from "./footnotes/footnotes";
|
||||
import { Relationships } from "./relationships";
|
||||
|
||||
export class FootnotesWrapper implements IViewWrapper {
|
||||
private readonly footnotess: FootNotes;
|
||||
private readonly relationships: Relationships;
|
||||
|
||||
constructor() {
|
||||
this.footnotess = new FootNotes();
|
||||
this.relationships = new Relationships();
|
||||
}
|
||||
|
||||
public get View(): FootNotes {
|
||||
return this.footnotess;
|
||||
}
|
||||
|
||||
public get Relationships(): Relationships {
|
||||
return this.relationships;
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user