RenaiApp/src/shared/types/entity-api/base/site.d.ts

12 lines
339 B
TypeScript

/**
* This non-user-maintained entity describes an online provider of works which can be scraped.
*/
interface SiteInterface extends IdentifiableInterface, MultiNamedInterface {
names: Promise<SiteNameInterface[]> | Identifier[];
/**
* sources belonging to this site
*/
sources: Promise<SourceInterface[]> | Identifier[];
}