remove dots from filenames

This commit is contained in:
mrjvs
2023-09-27 19:21:46 +02:00
parent 555827cf62
commit 2a2a3adc24
7 changed files with 1 additions and 0 deletions

View File

@@ -0,0 +1,25 @@
# `ProviderControls.listSources`
List all source scrapers that applicable for the target.
They are sorted by rank, highest first
## Example
```ts
const sourceScrapers = providers.listSources();
// garuanteed to only return type: 'source'
```
## Type
```ts
function listSources(): MetaOutput[];
type MetaOutput = {
type: 'embed' | 'source';
id: string;
rank: number;
name: string;
mediaTypes?: Array<MediaTypes>;
};
```