review comments

Signed-off-by: Fredrik Adelöw <freben@gmail.com>
This commit is contained in:
Fredrik Adelöw
2024-06-24 15:54:14 +02:00
parent d3c39fc71c
commit a03b86497b
+6 -1
View File
@@ -26,9 +26,14 @@ export interface Config {
routes?: {
/**
* Maps external route references to regular route references. Both the
* key and the value is expected to be on the form `<pluginId>.<routeId>`.
* If the value is `false`, the route will be disabled even if it has a
* default mapping.
*
* @deepVisibility frontend
*/
bindings?: { [externalRouteRefId: string]: string };
bindings?: { [externalRouteRefId: string]: string | false };
};
/**