UmbSectionSidebarAppExtensionElement

This commit is contained in:
Niels Lyngsø
2023-04-27 13:32:47 +02:00
parent bd0f98dc92
commit bad14429b3
2 changed files with 7 additions and 1 deletions

View File

@@ -0,0 +1,5 @@
import type { ManifestSectionSidebarApp } from '../models';
export interface UmbSectionSidebarAppExtensionElement extends HTMLElement {
manifest?: ManifestSectionSidebarApp;
}

View File

@@ -1,6 +1,7 @@
import type { UmbSectionSidebarAppExtensionElement } from '../interfaces/section-sidebar-app-extension-element.interface';
import type { ManifestElement } from '.';
export interface ManifestSectionSidebarApp extends ManifestElement {
export interface ManifestSectionSidebarApp extends ManifestElement<UmbSectionSidebarAppExtensionElement> {
type: 'sectionSidebarApp';
conditions: ConditionsSectionSidebarApp;
}