-
Notifications
You must be signed in to change notification settings - Fork 0
/
raycast-env.d.ts
34 lines (28 loc) · 1.02 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
/// <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 `ticker` command */
export type Ticker = ExtensionPreferences & {}
/** Preferences accessible in the `wl` command */
export type Wl = ExtensionPreferences & {}
/** Preferences accessible in the `market` command */
export type Market = ExtensionPreferences & {}
}
declare namespace Arguments {
/** Arguments passed to the `ticker` command */
export type Ticker = {
/** Token ID or symbol */
"token": string
}
/** Arguments passed to the `wl` command */
export type Wl = {}
/** Arguments passed to the `market` command */
export type Market = {}
}