14 lines
334 B
TypeScript
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',
|
|
},
|
|
},
|
|
);
|