-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathraycast-env.d.ts
More file actions
41 lines (34 loc) · 1.5 KB
/
Copy pathraycast-env.d.ts
File metadata and controls
41 lines (34 loc) · 1.5 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
/// <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 = {
/** Client ID - The Client ID of your application registration in Azure. */
"clientId": string,
/** Default List for Quick Add - ID of the default list for Quick Add (optional - will auto-select if empty) */
"defaultList"?: string
}
/** Preferences accessible in all the extension's commands */
declare type Preferences = ExtensionPreferences
declare namespace Preferences {
/** Preferences accessible in the `list-todos` command */
export type ListTodos = ExtensionPreferences & {}
/** Preferences accessible in the `create-todo` command */
export type CreateTodo = ExtensionPreferences & {}
/** Preferences accessible in the `list-tasks-by-list` command */
export type ListTasksByList = ExtensionPreferences & {}
/** Preferences accessible in the `quick-add-todo` command */
export type QuickAddTodo = ExtensionPreferences & {}
}
declare namespace Arguments {
/** Arguments passed to the `list-todos` command */
export type ListTodos = {}
/** Arguments passed to the `create-todo` command */
export type CreateTodo = {}
/** Arguments passed to the `list-tasks-by-list` command */
export type ListTasksByList = {}
/** Arguments passed to the `quick-add-todo` command */
export type QuickAddTodo = {}
}