-
Notifications
You must be signed in to change notification settings - Fork 0
/
raycast-env.d.ts
41 lines (33 loc) · 1.29 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
/// <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 = {
/** API Key - SportMonks API Key used to fetch all relevant football data */
"apiKey": string,
/** Calendar Name - Name of the calendar you wish to save all fixture dates */
"calendarName": string
}
/** Preferences accessible in all the extension's commands */
declare type Preferences = ExtensionPreferences
declare namespace Preferences {
/** Preferences accessible in the `test` command */
export type Test = ExtensionPreferences & {}
/** Preferences accessible in the `searchTeam` command */
export type SearchTeam = ExtensionPreferences & {}
/** Preferences accessible in the `searchLeagueStandings` command */
export type SearchLeagueStandings = ExtensionPreferences & {}
}
declare namespace Arguments {
/** Arguments passed to the `test` command */
export type Test = {}
/** Arguments passed to the `searchTeam` command */
export type SearchTeam = {
/** Enter Team */
"team": string
}
/** Arguments passed to the `searchLeagueStandings` command */
export type SearchLeagueStandings = {}
}