-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathraycast-env.d.ts
32 lines (25 loc) · 1021 Bytes
/
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
/// <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 `setup` command */
export type Setup = ExtensionPreferences & {}
/** Preferences accessible in the `resize` command */
export type Resize = ExtensionPreferences & {}
/** Preferences accessible in the `configure` command */
export type Configure = ExtensionPreferences & {}
}
declare namespace Arguments {
/** Arguments passed to the `setup` command */
export type Setup = {}
/** Arguments passed to the `resize` command */
export type Resize = {}
/** Arguments passed to the `configure` command */
export type Configure = {}
}