Source code
Revision control
Copy as Markdown
Other Tools
// generated by diplomat-tool
import type { DataError } from "./DataError"
import type { DataProvider } from "./DataProvider"
import type { ListLength } from "./ListLength"
import type { Locale } from "./Locale"
import type { pointer, codepoint } from "./diplomat-runtime.d.ts";
/**
* See the [Rust documentation for `ListFormatter`](https://docs.rs/icu/latest/icu/list/struct.ListFormatter.html) for more information.
*/
export class ListFormatter {
get ffiValue(): pointer;
/**
* Construct a new ListFormatter instance for And patterns from compiled data.
*
* See the [Rust documentation for `try_new_and`](https://docs.rs/icu/latest/icu/list/struct.ListFormatter.html#method.try_new_and) for more information.
*/
static createAndWithLength(locale: Locale, length: ListLength): ListFormatter;
/**
* Construct a new ListFormatter instance for And patterns
*
* See the [Rust documentation for `try_new_and`](https://docs.rs/icu/latest/icu/list/struct.ListFormatter.html#method.try_new_and) for more information.
*/
static createAndWithLengthAndProvider(provider: DataProvider, locale: Locale, length: ListLength): ListFormatter;
/**
* Construct a new ListFormatter instance for And patterns from compiled data.
*
* See the [Rust documentation for `try_new_or`](https://docs.rs/icu/latest/icu/list/struct.ListFormatter.html#method.try_new_or) for more information.
*/
static createOrWithLength(locale: Locale, length: ListLength): ListFormatter;
/**
* Construct a new ListFormatter instance for And patterns
*
* See the [Rust documentation for `try_new_or`](https://docs.rs/icu/latest/icu/list/struct.ListFormatter.html#method.try_new_or) for more information.
*/
static createOrWithLengthAndProvider(provider: DataProvider, locale: Locale, length: ListLength): ListFormatter;
/**
* Construct a new ListFormatter instance for And patterns from compiled data.
*
* See the [Rust documentation for `try_new_unit`](https://docs.rs/icu/latest/icu/list/struct.ListFormatter.html#method.try_new_unit) for more information.
*/
static createUnitWithLength(locale: Locale, length: ListLength): ListFormatter;
/**
* Construct a new ListFormatter instance for And patterns
*
* See the [Rust documentation for `try_new_unit`](https://docs.rs/icu/latest/icu/list/struct.ListFormatter.html#method.try_new_unit) for more information.
*/
static createUnitWithLengthAndProvider(provider: DataProvider, locale: Locale, length: ListLength): ListFormatter;
/**
* See the [Rust documentation for `format`](https://docs.rs/icu/latest/icu/list/struct.ListFormatter.html#method.format) for more information.
*/
format(list: Array<string>): string;
}