tor-browser

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

Weekday.d.ts (493B)


      1 // generated by diplomat-tool
      2 import type { pointer, codepoint } from "./diplomat-runtime.d.ts";
      3 
      4 
      5 
      6 export class Weekday {
      7 
      8    static fromValue(value: Weekday | string): Weekday;
      9 
     10    get value(): string;
     11 
     12    get ffiValue(): number;
     13 
     14    static Monday : Weekday;
     15    static Tuesday : Weekday;
     16    static Wednesday : Weekday;
     17    static Thursday : Weekday;
     18    static Friday : Weekday;
     19    static Saturday : Weekday;
     20    static Sunday : Weekday;
     21 
     22 
     23    constructor(value: Weekday | string );
     24 }