Files
Tom Moor bf45e97641 chore: Enforce type import consistency (#10968)
* Update types

* fix circular dep

* type imports

* lint type imports and --fix
2025-12-19 23:07:02 -05:00

13 lines
285 B
TypeScript

import type { 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,
};
}