tor-browser

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

TimeZoneAndCanonicalAndNormalized.d.ts (479B)


      1 // generated by diplomat-tool
      2 import type { TimeZone } from "./TimeZone"
      3 import type { pointer, codepoint } from "./diplomat-runtime.d.ts";
      4 
      5 
      6 /**
      7 * See the [Rust documentation for `TimeZoneAndCanonicalAndNormalized`](https://docs.rs/icu/latest/icu/time/zone/iana/struct.TimeZoneAndCanonicalAndNormalized.html) for more information.
      8 */
      9 
     10 
     11 export class TimeZoneAndCanonicalAndNormalized {
     12    get timeZone(): TimeZone;
     13    get canonical(): string;
     14    get normalized(): string;
     15 
     16 }