11 lines
207 B
TypeScript
11 lines
207 B
TypeScript
![]() |
import { Run } from "file/paragraph";
|
||
|
import { Seperator } from "./seperator";
|
||
|
|
||
|
export class SeperatorRun extends Run {
|
||
|
constructor() {
|
||
|
super();
|
||
|
|
||
|
this.root.push(new Seperator());
|
||
|
}
|
||
|
}
|