move Person type to ui-types

This commit is contained in:
Sebastian Sdorra
2020-06-10 10:02:49 +02:00
parent 324c23e509
commit 53fc01b0ba
5 changed files with 20 additions and 37 deletions

View File

@@ -22,9 +22,10 @@
* SOFTWARE.
*/
export type Person = {
name: string;
mail?: string;
};
import { Person } from "@scm-manager/ui-types";
// re export type to avoid breaking changes,
// after the type was moved to ui-types
export { Person };
export const EXTENSION_POINT = "avatar.factory";