import type { Object } from '../objects' import type { Actor } from '../actors' import type { Activity } from '.' const FOLLOW = 'Follow' export function create(actor: Actor, object: Object): Activity { return { '@context': 'https://www.w3.org/ns/activitystreams', type: FOLLOW, actor: actor.id, object: object.id, } }