Skip to content

Commit 1828b8b

Browse files
committed
Fix imports
Signed-off-by: Andrey Sobolev <haiodo@gmail.com>
1 parent d99d181 commit 1828b8b

File tree

1 file changed

+15
-12
lines changed

1 file changed

+15
-12
lines changed

server/middleware/src/triggers.ts

+15-12
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@
1414
//
1515

1616
import core, {
17-
type PersonId,
1817
type AttachedDoc,
1918
type Class,
2019
ClassifierKind,
@@ -25,10 +24,11 @@ import core, {
2524
type LowLevelStorage,
2625
type MeasureContext,
2726
type Mixin,
27+
type PersonId,
2828
type Ref,
2929
type SessionData,
3030
type Tx,
31-
TxCUD,
31+
type TxCUD,
3232
TxFactory,
3333
type TxRemoveDoc,
3434
type TxUpdateDoc,
@@ -37,17 +37,20 @@ import core, {
3737
withContext
3838
} from '@hcengineering/core'
3939
import { PlatformError, getResource, unknownError } from '@hcengineering/platform'
40-
import type {
41-
Middleware,
42-
ObjectDDParticipant,
43-
PipelineContext,
44-
ServerFindOptions,
45-
ServiceAdaptersManager,
46-
StorageAdapter,
47-
TriggerControl,
48-
TxMiddlewareResult
40+
import serverCore, {
41+
type Middleware,
42+
type ObjectDDParticipant,
43+
type PipelineContext,
44+
type ServerFindOptions,
45+
type ServiceAdaptersManager,
46+
type StorageAdapter,
47+
type TriggerControl,
48+
type TxMiddlewareResult,
49+
BaseMiddleware,
50+
SessionDataImpl,
51+
type SessionFindAll,
52+
Triggers
4953
} from '@hcengineering/server-core'
50-
import serverCore, { BaseMiddleware, SessionDataImpl, SessionFindAll, Triggers } from '@hcengineering/server-core'
5154
import { filterBroadcastOnly } from './utils'
5255

5356
/**

0 commit comments

Comments
 (0)