summaryrefslogtreecommitdiff
path: root/src/remote/activitypub/renderer/ordered-collection.ts
blob: 9d543b1e1be57a0f0c88247743433d09638010ec (plain)
1
2
3
4
5
6
export default (id: string, totalItems: any, orderedItems: any) => ({
	id,
	type: 'OrderedCollection',
	totalItems,
	orderedItems
});