11 lines
337 B
TypeScript
11 lines
337 B
TypeScript
export const manifests: Array<UmbExtensionManifest> = [
|
|
{
|
|
type: 'blockEditorCustomView',
|
|
alias: 'Umb.blockEditorCustomView.TestView',
|
|
name: 'Block Editor Custom View Test',
|
|
element: () => import('./block-custom-view.js'),
|
|
forContentTypeAlias: 'headlineUmbracoDemoBlock',
|
|
forBlockEditor: ['block-list', 'block-grid'],
|
|
},
|
|
];
|