-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathraycast-env.d.ts
51 lines (44 loc) · 1.83 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
45
46
47
48
49
50
/// <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 = {
/** Search Bar Filter - Select your preferred filtering method in the search bar for Fixtures & Results. */
"filter": "competition" | "club"
}
/** 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 `fixture` command */
export type Fixture = 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 `player` command */
export type Player = ExtensionPreferences & {}
/** Preferences accessible in the `manager` command */
export type Manager = ExtensionPreferences & {}
/** Preferences accessible in the `award` command */
export type Award = ExtensionPreferences & {}
}
declare namespace Arguments {
/** Arguments passed to the `table` command */
export type Table = {}
/** Arguments passed to the `fixture` command */
export type Fixture = {}
/** Arguments passed to the `result` command */
export type Result = {}
/** Arguments passed to the `club` command */
export type Club = {}
/** Arguments passed to the `player` command */
export type Player = {}
/** Arguments passed to the `manager` command */
export type Manager = {}
/** Arguments passed to the `award` command */
export type Award = {}
}