Initial editor functionality

This commit is contained in:
garrettmills
2020-02-08 03:36:14 -06:00
parent 81d9706830
commit b0bc6ca20c
19 changed files with 366 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
export default class HostRecord {
public value = '';
public type: 'paragraph'|'header1'|'header2'|'header3'|'header4'|'block_code' = 'paragraph';
constructor(value = '') {
this.value = value;
}
}