make interface extend HTMLElement

This commit is contained in:
Niels Lyngsø
2023-03-13 13:02:00 +01:00
parent d195ccedd2
commit 5f5edf014a
2 changed files with 6 additions and 7 deletions

View File

@@ -1 +1,6 @@
export * from './property-editor-element';
import { DataTypePropertyModel } from '@umbraco-cms/backend-api';
export interface UmbPropertyEditorElement extends HTMLElement {
value: unknown;
config: DataTypePropertyModel[];
}

View File

@@ -1,6 +0,0 @@
import { DataTypePropertyModel } from '@umbraco-cms/backend-api';
export interface UmbPropertyEditorElement {
value: unknown;
config: DataTypePropertyModel[];
}