Files
Umbraco-CMS/src/Umbraco.Web.UI.Client/examples/modal-routed/modal/example-modal-token.ts
2024-08-06 10:29:39 +02:00

14 lines
334 B
TypeScript

import { UmbModalToken } from '@umbraco-cms/backoffice/modal';
export type Data = object;
export type RetData = object;
export const EXAMPLE_ROUTED_MODAL = new UmbModalToken<Data, RetData>(
'example.routed.modal', // this needs to match the alias of the modal registered in manifest.ts
{
modal: {
type: 'dialog',
},
},
);