mirror of
https://github.com/outline/outline.git
synced 2026-06-13 03:14:59 +03:00
bf45e97641
* Update types * fix circular dep * type imports * lint type imports and --fix
14 lines
350 B
TypeScript
14 lines
350 B
TypeScript
import type { Attachment } from "@server/models";
|
|
|
|
export default function presentAttachment(attachment: Attachment) {
|
|
return {
|
|
userId: attachment.userId,
|
|
documentId: attachment.documentId,
|
|
contentType: attachment.contentType,
|
|
name: attachment.name,
|
|
id: attachment.id,
|
|
url: attachment.url,
|
|
size: attachment.size,
|
|
};
|
|
}
|