cli,frontend-app-api: cleanup

Signed-off-by: Patrik Oldsberg <poldsberg@gmail.com>
This commit is contained in:
Patrik Oldsberg
2023-09-05 16:42:05 +02:00
parent f36113ca23
commit 89f03fa044
8 changed files with 2 additions and 38 deletions
+1 -1
View File
@@ -32,7 +32,7 @@ import {
} from './wiring/parameters';
import { RoutingProvider } from './routing/RoutingContext';
import { RouteRef } from '@backstage/core-plugin-api';
import { getAvailablePlugins } from './discover';
import { getAvailablePlugins } from './wiring/discovery';
/** @public */
export function createApp(options: { plugins: BackstagePlugin[] }): {
@@ -1,22 +0,0 @@
/*
* Copyright 2023 The Backstage Authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
declare module '__backstage-autodetected-plugins__' {
type DetectedModule = {
name: string;
module: Record<string, any>;
};
const modules: Array<{ name: string; module: Record<string, any> }>;
}