tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

Rfc9557ParseError.d.ts (710B)


      1 // generated by diplomat-tool
      2 import type { pointer, codepoint } from "./diplomat-runtime.d.ts";
      3 
      4 
      5 /**
      6 * Additional information: [1](https://docs.rs/icu/latest/icu/calendar/enum.ParseError.html), [2](https://docs.rs/icu/latest/icu/time/enum.ParseError.html)
      7 */
      8 
      9 
     10 export class Rfc9557ParseError {
     11 
     12    static fromValue(value: Rfc9557ParseError | string): Rfc9557ParseError;
     13 
     14    get value(): string;
     15 
     16    get ffiValue(): number;
     17 
     18    static Unknown : Rfc9557ParseError;
     19    static InvalidSyntax : Rfc9557ParseError;
     20    static OutOfRange : Rfc9557ParseError;
     21    static MissingFields : Rfc9557ParseError;
     22    static UnknownCalendar : Rfc9557ParseError;
     23 
     24 
     25    constructor(value: Rfc9557ParseError | string );
     26 }