Type Alias: Limit
Less than 1 minute
@ghentcdh/annotated-text / Limit
Type Alias: Limit
Limit = {
end:number;ignoreLines?:boolean;start:number; } |null
Defined in: libs/core/src/lib/adapter/text/TextAdapter.ts:7
Type Declaration
{ end: number; ignoreLines?: boolean; start: number; }
end
end:
number
The end position in the text up to which to consider lines. This is exclusive.
ignoreLines?
optionalignoreLines:boolean
If true, characters that are outside the range will be ignored. If false, lines that intersect with the range will be included. Defaults to false.
start
start:
number
The start position in the text from which to consider lines. This is inclusive.
null