-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathraycast-env.d.ts
More file actions
43 lines (35 loc) · 1.26 KB
/
Copy pathraycast-env.d.ts
File metadata and controls
43 lines (35 loc) · 1.26 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
40
41
/// <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 - Get your API key from Supernotes. */
"apiKey": string
}
/** Preferences accessible in all the extension's commands */
declare type Preferences = ExtensionPreferences
declare namespace Preferences {
/** Preferences accessible in the `send` command */
export type Send = ExtensionPreferences & {}
/** Preferences accessible in the `daily` command */
export type Daily = ExtensionPreferences & {}
/** Preferences accessible in the `create` command */
export type Create = ExtensionPreferences & {}
/** Preferences accessible in the `search` command */
export type Search = ExtensionPreferences & {}
}
declare namespace Arguments {
/** Arguments passed to the `send` command */
export type Send = {}
/** Arguments passed to the `daily` command */
export type Daily = {
/** Content */
"content": string
}
/** Arguments passed to the `create` command */
export type Create = {}
/** Arguments passed to the `search` command */
export type Search = {}
}