-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathraycast-env.d.ts
47 lines (38 loc) · 1.55 KB
/
raycast-env.d.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
/// <reference types="@raycast/api">
/* 🚧 🚧 🚧
* This file is auto-generated from the extension's manifest.
* Do not modify manually. Instead, update the `package.json` file.
* 🚧 🚧 🚧 */
/* eslint-disable @typescript-eslint/ban-types */
type ExtensionPreferences = {
/** Language - Select your preferred language for the app interface. */
"language": "en" | "it",
/** API Key - Enter API key to access detailed statistics and data. */
"apikey": string
}
/** Preferences accessible in all the extension's commands */
declare type Preferences = ExtensionPreferences
declare namespace Preferences {
/** Preferences accessible in the `table` command */
export type Table = ExtensionPreferences & {}
/** Preferences accessible in the `result` command */
export type Result = ExtensionPreferences & {}
/** Preferences accessible in the `club` command */
export type Club = ExtensionPreferences & {}
/** Preferences accessible in the `coppa` command */
export type Coppa = ExtensionPreferences & {}
/** Preferences accessible in the `international` command */
export type International = ExtensionPreferences & {}
}
declare namespace Arguments {
/** Arguments passed to the `table` command */
export type Table = {}
/** Arguments passed to the `result` command */
export type Result = {}
/** Arguments passed to the `club` command */
export type Club = {}
/** Arguments passed to the `coppa` command */
export type Coppa = {}
/** Arguments passed to the `international` command */
export type International = {}
}