diff options
author | toasted-nutbread <toasted-nutbread@users.noreply.github.com> | 2023-11-29 20:14:22 -0500 |
---|---|---|
committer | toasted-nutbread <toasted-nutbread@users.noreply.github.com> | 2023-11-29 20:14:22 -0500 |
commit | 4a14a0ff0105bf29f2f9368f175c0c17f54a1921 (patch) | |
tree | c87e31ef0c09da653cc6bf943086600b10971665 /types/dev | |
parent | e215656ce9b965360e540da93ebf5c381cbe4e41 (diff) |
Update manifest types
Diffstat (limited to 'types/dev')
-rw-r--r-- | types/dev/manifest.d.ts | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/types/dev/manifest.d.ts b/types/dev/manifest.d.ts index 4fdf3b14..e455208f 100644 --- a/types/dev/manifest.d.ts +++ b/types/dev/manifest.d.ts @@ -15,8 +15,10 @@ * along with this program. If not, see <https://www.gnu.org/licenses/>. */ -export type Manifest = { - manifest: chrome.runtime.Manifest; +export type Manifest = chrome.runtime.Manifest; + +export type ManifestConfig = { + manifest: Manifest; defaultVariant: string; variants: ManifestVariant[]; }; |