Files
providers/.docs/content/2.Api/6.ProviderControls.getMetadata.md
2023-09-27 19:00:40 +02:00

25 lines
422 B
Markdown

# `ProviderControls.getMetadata`
Get meta data for a scraper, can be either source or embed scraper.
Returns null if id is not recognized.
## Example
```ts
const flixhqSource = providers.getMetadata('flixhq');
```
## Type
```ts
function getMetadata(id: string): MetaOutput | null;
type MetaOutput = {
type: 'embed' | 'source';
id: string;
rank: number;
name: string;
mediaTypes?: Array<MediaTypes>;
};
```