platform/plugins/contact-resources/src/assignee.ts
Andrey Sobolev 7621bccf22
UBER-1074: Svelte 4 (#4014)
Signed-off-by: Andrey Sobolev <haiodo@gmail.com>
2023-11-20 17:01:43 +07:00

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>>>
}