From e27d7af37cc4657d9089471872615158efa29952 Mon Sep 17 00:00:00 2001 From: Robert Bolender Date: Fri, 8 Dec 2023 09:36:57 -0800 Subject: [PATCH] Check in TypeScript definition --- raycast-env.d.ts | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 raycast-env.d.ts diff --git a/raycast-env.d.ts b/raycast-env.d.ts new file mode 100644 index 0000000..b075843 --- /dev/null +++ b/raycast-env.d.ts @@ -0,0 +1,25 @@ +/// + +/* 🚧 🚧 🚧 + * 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 = {} +} + +