mirror of
https://github.com/kotaindah55/extended-markdown-syntax.git
synced 2026-07-22 05:38:06 +00:00
style: add public modifier to ILine fields
This commit is contained in:
parent
fc78a7557c
commit
df0e2d31bb
1 changed files with 4 additions and 4 deletions
|
|
@ -14,10 +14,10 @@ function _isTextNode(doc: Text): doc is TextNode {
|
||||||
}
|
}
|
||||||
|
|
||||||
export class ILine extends Line {
|
export class ILine extends Line {
|
||||||
readonly from: number;
|
public readonly from: number;
|
||||||
readonly to: number;
|
public readonly to: number;
|
||||||
readonly number: number;
|
public readonly number: number;
|
||||||
readonly text: string;
|
public readonly text: string;
|
||||||
|
|
||||||
constructor(from: number, to: number, number: number, text: string) {
|
constructor(from: number, to: number, number: number, text: string) {
|
||||||
super();
|
super();
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue