-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathraycast-env.d.ts
More file actions
35 lines (28 loc) · 1.43 KB
/
Copy pathraycast-env.d.ts
File metadata and controls
35 lines (28 loc) · 1.43 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
/// <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 = {
/** Primary Action - Set the default behavior when you select a commit name */
"primaryAction": "paste" | "copy-and-paste" | "copy",
/** Content Format - Applied format when you select a commit name */
"contentFormat": "text" | "lazygit" | "git",
/** Type Mode - Configure the mode of your commit types */
"typeMode": "text" | "gitmoji",
/** Commit Format - Customizes the format of the commit. The available parameters are {type}, {scope}, and {message}. Use \ to remove the following character when no scope is present. Leave blank to revert to the default format. */
"commitFormat": string,
/** Body Format - Customizes the format of the body. The available parameters are {scope}, {body}. Leave blank to revert to the default format. */
"bodyFormat": string
}
/** Preferences accessible in all the extension's commands */
declare type Preferences = ExtensionPreferences
declare namespace Preferences {
/** Preferences accessible in the `parse-issue-url` command */
export type ParseIssueUrl = ExtensionPreferences & {}
}
declare namespace Arguments {
/** Arguments passed to the `parse-issue-url` command */
export type ParseIssueUrl = {}
}