1// generated by diplomat-tool 2import type { pointer, codepoint } from "./diplomat-runtime.d.ts"; 3 4 5/** An object that represents the Script_Extensions property for a single character 6* 7*See the [Rust documentation for `ScriptExtensionsSet`](https://docs.rs/icu/latest/icu/properties/script/struct.ScriptExtensionsSet.html) for more information. 8*/ 9 10 11export class ScriptExtensionsSet { 12 13 get ffiValue(): pointer; 14 15 contains(script: number): boolean; 16 17 get count(): number; 18 19 scriptAt(index: number): number | null; 20}