mirror of
https://github.com/hcengineering/platform.git
synced 2025-04-23 08:48:01 +00:00
24 lines
503 B
TypeScript
24 lines
503 B
TypeScript
//
|
|
// Copyright © 2023 Hardcore Engineering Inc.
|
|
//
|
|
//
|
|
|
|
import type { Plugin, Resource } from '@hcengineering/platform'
|
|
import { plugin } from '@hcengineering/platform'
|
|
import { Presenter } from '@hcengineering/server-notification'
|
|
|
|
/**
|
|
* @public
|
|
*/
|
|
export const serverDocumentId = 'server-document' as Plugin
|
|
|
|
/**
|
|
* @public
|
|
*/
|
|
export default plugin(serverDocumentId, {
|
|
function: {
|
|
DocumentHTMLPresenter: '' as Resource<Presenter>,
|
|
DocumentTextPresenter: '' as Resource<Presenter>
|
|
}
|
|
})
|