mirror of
https://github.com/hcengineering/platform.git
synced 2025-04-12 03:06:11 +00:00
12 lines
301 B
TypeScript
12 lines
301 B
TypeScript
import { type Person } from '@hcengineering/contact'
|
|
import { type Ref } from '@hcengineering/core'
|
|
import { type IntlString } from '@hcengineering/platform'
|
|
|
|
/**
|
|
* @public
|
|
*/
|
|
export interface AssigneeCategory {
|
|
label: IntlString
|
|
func: (val: Array<Ref<Person>>) => Promise<Array<Ref<Person>>>
|
|
}
|