-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
9b49138
commit e27d7af
Showing
1 changed file
with
25 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
/// <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 `index` command */ | ||
export type Index = ExtensionPreferences & {} | ||
} | ||
|
||
declare namespace Arguments { | ||
/** Arguments passed to the `index` command */ | ||
export type Index = {} | ||
} | ||
|
||
|