blob: 1dcdaa8e9a268eecf5d7326ddf013cb1b215d105 [file] [log] [blame]
// generated by diplomat-tool
import type { pointer, codepoint } from "./diplomat-runtime.d.ts";
/** See the [Rust documentation for `LineBreakStrictness`](https://docs.rs/icu/latest/icu/segmenter/options/enum.LineBreakStrictness.html) for more information.
*/
export class LineBreakStrictness {
static fromValue(value : LineBreakStrictness | string) : LineBreakStrictness;
get value() : string;
get ffiValue() : number;
static Loose : LineBreakStrictness;
static Normal : LineBreakStrictness;
static Strict : LineBreakStrictness;
static Anywhere : LineBreakStrictness;
constructor(value: LineBreakStrictness | string );
}