Files
outline/server/presenters/star.ts
2022-12-31 09:04:45 -05:00

13 lines
280 B
TypeScript

import { Star } from "@server/models";
export default function presentStar(star: Star) {
return {
id: star.id,
documentId: star.documentId,
collectionId: star.collectionId,
index: star.index,
createdAt: star.createdAt,
updatedAt: star.updatedAt,
};
}