Remove extraneous type

Signed-off-by: Tim Hansen <timbonicush@spotify.com>
This commit is contained in:
Tim Hansen
2025-02-07 14:24:49 -07:00
parent c5b6f34ec7
commit b088a541e0
2 changed files with 1 additions and 19 deletions
+1 -5
View File
@@ -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;
};
};
};