mirror of
https://github.com/hashicorp/vault.git
synced 2025-08-22 23:21:08 +02:00
* replace all injects with import syntax * Delete ui/app/components/identity/_popup-base.js
21 lines
488 B
TypeScript
21 lines
488 B
TypeScript
/**
|
|
* Copyright (c) HashiCorp, Inc.
|
|
* SPDX-License-Identifier: BUSL-1.1
|
|
*/
|
|
|
|
import Component from '@glimmer/component';
|
|
import { service } from '@ember/service';
|
|
|
|
import type VersionService from 'vault/services/version';
|
|
import type { Breadcrumb } from 'vault/vault/app-types';
|
|
|
|
interface Args {
|
|
title: string;
|
|
icon?: string;
|
|
breadcrumbs?: Breadcrumb[];
|
|
}
|
|
|
|
export default class SyncHeaderComponent extends Component<Args> {
|
|
@service declare readonly version: VersionService;
|
|
}
|