mirror of
https://github.com/hashicorp/vault.git
synced 2025-12-26 11:51:42 +01:00
* license: update headers to IBM Corp. * `make proto` * update offset because source file changed Signed-off-by: Ryan Cragun <me@ryan.ec> Co-authored-by: Ryan Cragun <me@ryan.ec>
21 lines
481 B
TypeScript
21 lines
481 B
TypeScript
/**
|
|
* Copyright IBM Corp. 2016, 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;
|
|
}
|