You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/**
* Addon setting.
*/
export interface ManifestConfig {
/**
* A key that will identify the user chosen value.
*/
key: string;
/**
* The type of data that the setting stores.
*/
type: ManifestConfigType;
/**
* The default value. For `type: "boolean"` this can be set to "checked" to default to enabled.
*/
default?: string;
/**
* The title of the setting.
*/
title?: string;
/**
* List of (string) choices for `type: "select"`
*/
options?: string;
/**
* If the value is required or not. Only applies to the following types: "string", "number". (default is `false`)
*/
required?: string;
}
This is the current ManifestConfig:
This doesn't respect the documentation here: https://github.com/Stremio/stremio-addon-sdk/blob/master/docs/api/responses/manifest.md#user-data
The text was updated successfully, but these errors were encountered: