mirror of
https://github.com/Stremio/stremio-web.git
synced 2026-03-11 21:27:05 +00:00
20 lines
342 B
TypeScript
20 lines
342 B
TypeScript
type AddonManifest = {
|
|
id: string,
|
|
version: string,
|
|
name: string,
|
|
description: string,
|
|
contactEmail: string,
|
|
logo: string,
|
|
background: string,
|
|
types: string[],
|
|
};
|
|
|
|
type Addon = {
|
|
installed: boolean,
|
|
manifest: AddonManifest,
|
|
transportUrl: string,
|
|
};
|
|
|
|
type AddonsDeepLinks = {
|
|
addons: string,
|
|
};
|