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