Source code
Revision control
Copy as Markdown
Other Tools
// generated by diplomat-tool
import type { BidiParagraph } from "./BidiParagraph"
import type { pointer, codepoint } from "./diplomat-runtime.d.ts";
/**
* An object containing bidi information for a given string, produced by `for_text()` on `Bidi`
*
* See the [Rust documentation for `BidiInfo`](https://docs.rs/unicode_bidi/latest/unicode_bidi/struct.BidiInfo.html) for more information.
*/
export class BidiInfo {
get ffiValue(): pointer;
/**
* The number of paragraphs contained here
*/
get paragraphCount(): number;
/**
* Get the nth paragraph, returning `None` if out of bounds
*/
paragraphAt(n: number): BidiParagraph | null;
/**
* The number of bytes in this full text
*/
get size(): number;
/**
* Get the BIDI level at a particular byte index in the full text.
* This integer is conceptually a `unicode_bidi::Level`,
* and can be further inspected using the static methods on Bidi.
*
* Returns 0 (equivalent to `Level::ltr()`) on error
*/
levelAt(pos: number): number;
}