prettier
This commit is contained in:
@@ -1,15 +1,14 @@
|
||||
import { UmbModalToken } from "@umbraco-cms/backoffice/modal";
|
||||
import { UmbModalToken } from '@umbraco-cms/backoffice/modal';
|
||||
|
||||
export type Data = {}
|
||||
export type RetData = {}
|
||||
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',
|
||||
size : 'full'
|
||||
}
|
||||
});
|
||||
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',
|
||||
size: 'full',
|
||||
},
|
||||
},
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user