mirror of
https://github.com/hashicorp/vault.git
synced 2026-06-29 20:35:22 -04:00
* VAULT-45707 - migrates transform templates views * updated fields to snake_case * updated selectors in test to use GENERAL selector Co-authored-by: mohit-hashicorp <mohit.ojha@hashicorp.com>
23 lines
491 B
TypeScript
23 lines
491 B
TypeScript
/**
|
|
* Copyright IBM Corp. 2016, 2025
|
|
* SPDX-License-Identifier: BUSL-1.1
|
|
*/
|
|
|
|
// Types for compiled templates
|
|
declare module 'vault/templates/*' {
|
|
import { TemplateFactory } from 'ember-cli-htmlbars';
|
|
|
|
const tmpl: TemplateFactory;
|
|
export default tmpl;
|
|
}
|
|
|
|
declare module '@icholy/duration' {
|
|
import Duration from '@icholy/duration';
|
|
export default Duration;
|
|
}
|
|
|
|
declare module 'vault/tests/helpers/vault-keys';
|
|
|
|
declare module '@carbon/charts/styles.css';
|
|
|
|
declare module 'sinon';
|