-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathraycast-env.d.ts
More file actions
40 lines (33 loc) · 1.46 KB
/
raycast-env.d.ts
File metadata and controls
40 lines (33 loc) · 1.46 KB
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 = {}
/** Preferences accessible in all the extension's commands */
declare type Preferences = ExtensionPreferences
declare namespace Preferences {
/** Preferences accessible in the `list-instances` command */
export type ListInstances = ExtensionPreferences & {}
/** Preferences accessible in the `list-containers` command */
export type ListContainers = ExtensionPreferences & {}
/** Preferences accessible in the `list-images` command */
export type ListImages = ExtensionPreferences & {}
/** Preferences accessible in the `pull-image` command */
export type PullImage = ExtensionPreferences & {}
/** Preferences accessible in the `run-container` command */
export type RunContainer = ExtensionPreferences & {}
}
declare namespace Arguments {
/** Arguments passed to the `list-instances` command */
export type ListInstances = {}
/** Arguments passed to the `list-containers` command */
export type ListContainers = {}
/** Arguments passed to the `list-images` command */
export type ListImages = {}
/** Arguments passed to the `pull-image` command */
export type PullImage = {}
/** Arguments passed to the `run-container` command */
export type RunContainer = {}
}