Initial editor functionality
This commit is contained in:
9
src/app/structures/HostRecord.ts
Normal file
9
src/app/structures/HostRecord.ts
Normal 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;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user