mirror of
https://github.com/hashicorp/vault.git
synced 2026-05-17 02:27:03 +02:00
21 lines
481 B
TypeScript
21 lines
481 B
TypeScript
/**
|
|
* Copyright IBM Corp. 2026, 2025
|
|
* SPDX-License-Identifier: BUSL-1.1
|
|
*/
|
|
|
|
import Component from '@glimmer/component';
|
|
import { service } from '@ember/service';
|
|
|
|
import type FlagsService from 'vault/services/flags';
|
|
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 flags: FlagsService;
|
|
}
|