aboutsummaryrefslogtreecommitdiff
path: root/types/dev
diff options
context:
space:
mode:
authortoasted-nutbread <toasted-nutbread@users.noreply.github.com>2023-11-29 20:14:22 -0500
committertoasted-nutbread <toasted-nutbread@users.noreply.github.com>2023-11-29 20:14:22 -0500
commit4a14a0ff0105bf29f2f9368f175c0c17f54a1921 (patch)
treec87e31ef0c09da653cc6bf943086600b10971665 /types/dev
parente215656ce9b965360e540da93ebf5c381cbe4e41 (diff)
Update manifest types
Diffstat (limited to 'types/dev')
-rw-r--r--types/dev/manifest.d.ts6
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[];
};