You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
main
${ noResults }
17 lines
529 B
TypeScript
17 lines
529 B
TypeScript
import { ActorModel } from '../../models/actor/actor.js'
|
|||
import { MActorAccountChannelId, MActorFull } from '../../types/models/index.js'
|
|||
|
|||
type ActorLoadByUrlType = 'all' | 'association-ids'
|
|||
|
|||
function loadActorByUrl (url: string, fetchType: ActorLoadByUrlType): Promise<MActorFull | MActorAccountChannelId> {
|
|||
if (fetchType === 'all') return ActorModel.loadByUrlAndPopulateAccountAndChannel(url)
|
|||
|
|||
if (fetchType === 'association-ids') return ActorModel.loadByUrl(url)
|
|||
}
|
|||
|
|||
export {
|
|||
type ActorLoadByUrlType,
|
|||
|
|||
loadActorByUrl
|
|||
}
|