diff options
Diffstat (limited to 'types/ext')
-rw-r--r-- | types/ext/text-scanner.d.ts | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/types/ext/text-scanner.d.ts b/types/ext/text-scanner.d.ts index 4ec7f204..5b806dab 100644 --- a/types/ext/text-scanner.d.ts +++ b/types/ext/text-scanner.d.ts @@ -184,3 +184,9 @@ export type PointerEventType = ( 'click' | 'script' ); + +export type SentenceTerminatorMap = Map<string, [includeCharacterAtStart: boolean, includeCharacterAtEnd: boolean]>; + +export type SentenceForwardQuoteMap = Map<string, [character: string, includeCharacterAtStart: boolean]>; + +export type SentenceBackwardQuoteMap = Map<string, [character: string, includeCharacterAtEnd: boolean]>; |