JSDoc header app

This commit is contained in:
Warren Buckley
2023-03-07 21:23:14 +00:00
parent 5e9a12f2eb
commit 9fefde8ef7

View File

@@ -1,10 +1,15 @@
import type { ManifestElement } from './models';
/**
* Header apps are displayed in the top right corner of the backoffice
* The two provided header apps are the search and the user menu
*/
export interface ManifestHeaderApp extends ManifestElement {
type: 'headerApp';
meta: MetaHeaderApp;
}
// TODO: Warren these don't seem to be used anywhere
export interface MetaHeaderApp {
pathname: string;
label: string;