mirror of
https://github.com/hcengineering/platform.git
synced 2025-02-08 03:47:20 +00:00
8 lines
225 B
TypeScript
8 lines
225 B
TypeScript
import { Class, Doc, Ref, Tx } from '@anticrm/core'
|
|
|
|
export type ActivityKey = string
|
|
|
|
export function activityKey (objectClass: Ref<Class<Doc>>, txClass: Ref<Class<Tx>>): ActivityKey {
|
|
return objectClass + ':' + txClass
|
|
}
|