Skip to content

Commit 2683ba2

Browse files
committed
remove quotation node
1 parent eb073a5 commit 2683ba2

File tree

1 file changed

+0
-5
lines changed

1 file changed

+0
-5
lines changed

src/parser/ast.ts

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -98,11 +98,6 @@ export type Sentence =
9898
punctuation: string;
9999
interrogative: null | "seme" | "x ala x";
100100
}>;
101-
export type Quotation = Readonly<{
102-
sentences: ReadonlyArray<Sentence>;
103-
leftMark: string;
104-
rightMark: string;
105-
}>;
106101
export type MultipleSentences =
107102
| Readonly<{ type: "single word"; word: string }>
108103
| Readonly<{ type: "sentences"; sentences: ReadonlyArray<Sentence> }>;

0 commit comments

Comments
 (0)