Remove extraneous type
Signed-off-by: Tim Hansen <timbonicush@spotify.com>
This commit is contained in:
@@ -14,9 +14,5 @@
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
export type {
|
||||
Backend,
|
||||
BackendStartupOptions,
|
||||
CreateSpecializedBackendOptions,
|
||||
} from './types';
|
||||
export type { Backend, CreateSpecializedBackendOptions } from './types';
|
||||
export { createSpecializedBackend } from './createSpecializedBackend';
|
||||
|
||||
@@ -43,17 +43,3 @@ export interface CreateSpecializedBackendOptions {
|
||||
export type ServiceOrExtensionPoint<T = unknown> =
|
||||
| ExtensionPoint<T>
|
||||
| ServiceRef<T>;
|
||||
|
||||
/**
|
||||
* @public
|
||||
*/
|
||||
export type BackendStartupOptions = {
|
||||
default?: {
|
||||
optional?: boolean;
|
||||
};
|
||||
plugins?: {
|
||||
[pluginId: string]: {
|
||||
optional?: boolean;
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user