-
Notifications
You must be signed in to change notification settings - Fork 0
/
raycast-env.d.ts
69 lines (61 loc) · 2.63 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
/// <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 = {}
/** Preferences accessible in all the extension's commands */
declare type Preferences = ExtensionPreferences
declare namespace Preferences {
/** Preferences accessible in the `jokers` command */
export type Jokers = ExtensionPreferences & {}
/** Preferences accessible in the `tarot` command */
export type Tarot = ExtensionPreferences & {}
/** Preferences accessible in the `decks` command */
export type Decks = ExtensionPreferences & {}
/** Preferences accessible in the `planets` command */
export type Planets = ExtensionPreferences & {}
/** Preferences accessible in the `spectral` command */
export type Spectral = ExtensionPreferences & {}
/** Preferences accessible in the `voucher` command */
export type Voucher = ExtensionPreferences & {}
/** Preferences accessible in the `vouchersplus` command */
export type Vouchersplus = ExtensionPreferences & {}
/** Preferences accessible in the `enhancements` command */
export type Enhancements = ExtensionPreferences & {}
/** Preferences accessible in the `seals` command */
export type Seals = ExtensionPreferences & {}
/** Preferences accessible in the `tags` command */
export type Tags = ExtensionPreferences & {}
/** Preferences accessible in the `blinds` command */
export type Blinds = ExtensionPreferences & {}
/** Preferences accessible in the `boosters` command */
export type Boosters = ExtensionPreferences & {}
}
declare namespace Arguments {
/** Arguments passed to the `jokers` command */
export type Jokers = {}
/** Arguments passed to the `tarot` command */
export type Tarot = {}
/** Arguments passed to the `decks` command */
export type Decks = {}
/** Arguments passed to the `planets` command */
export type Planets = {}
/** Arguments passed to the `spectral` command */
export type Spectral = {}
/** Arguments passed to the `voucher` command */
export type Voucher = {}
/** Arguments passed to the `vouchersplus` command */
export type Vouchersplus = {}
/** Arguments passed to the `enhancements` command */
export type Enhancements = {}
/** Arguments passed to the `seals` command */
export type Seals = {}
/** Arguments passed to the `tags` command */
export type Tags = {}
/** Arguments passed to the `blinds` command */
export type Blinds = {}
/** Arguments passed to the `boosters` command */
export type Boosters = {}
}