add types for modal data and value

This commit is contained in:
Mads Rasmussen
2023-10-16 12:02:32 +02:00
parent 98446895c5
commit 7462ad3876

View File

@@ -1,6 +1,15 @@
import { UmbModalToken } from '@umbraco-cms/backoffice/modal';
export const UMB_RESEND_INVITE_TO_USER_MODAL = new UmbModalToken('Umb.Modal.User.ResendInvite', {
export type UmbResendInviteToUserModalData = {
userId: string;
};
export type UmbResendInviteToUserModalValue = undefined;
export const UMB_RESEND_INVITE_TO_USER_MODAL = new UmbModalToken<
UmbResendInviteToUserModalData,
UmbResendInviteToUserModalValue
>('Umb.Modal.User.ResendInvite', {
type: 'dialog',
size: 'small',
});