-
Notifications
You must be signed in to change notification settings - Fork 0
/
raycast-env.d.ts
31 lines (24 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
/// <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 = {
/** Number of recent emoticons to store and display - Number of recent emoticons to store and display */
"recent-items-number": string
}
/** Preferences accessible in all the extension's commands */
declare type Preferences = ExtensionPreferences
declare namespace Preferences {
/** Preferences accessible in the `search-emoticons` command */
export type SearchEmoticons = ExtensionPreferences & {}
/** Preferences accessible in the `random-emoticon` command */
export type RandomEmoticon = ExtensionPreferences & {}
}
declare namespace Arguments {
/** Arguments passed to the `search-emoticons` command */
export type SearchEmoticons = {}
/** Arguments passed to the `random-emoticon` command */
export type RandomEmoticon = {}
}