add missing interface property (#6210)

* add missing interface property

* add missing 'component' property
This commit is contained in:
Denys Vuika
2020-10-05 00:27:28 +01:00
committed by GitHub
parent 04f5fdffd7
commit 5e5d6c92fb
2 changed files with 3 additions and 1 deletions

View File

@@ -26,4 +26,5 @@ export interface DocumentListPresetRef extends ExtensionElement {
sortable: boolean;
template: string;
desktopOnly: boolean;
sortingKey: string;
}

View File

@@ -25,8 +25,9 @@ export interface NavBarLinkRef extends ExtensionElement {
icon: string;
title: string;
route: string;
provider?: string;
provider?: string;
component?: string;
url?: string; // evaluated at runtime based on route ref
description?: string;
children?: Array<NavBarLinkRef>;