mirror of
https://github.com/paricafe/misskey.git
synced 2024-11-30 05:56:43 -06:00
7 lines
166 B
TypeScript
7 lines
166 B
TypeScript
import config from '../../../config';
|
|
|
|
export default ({ _id, contentType }) => ({
|
|
type: 'Document',
|
|
mediaType: contentType,
|
|
url: `${config.drive_url}/${_id}`
|
|
});
|