mirror of
https://github.com/hashicorp/vault.git
synced 2025-08-17 20:17:00 +02:00
15 lines
292 B
JavaScript
15 lines
292 B
JavaScript
/**
|
|
* Copyright (c) HashiCorp, Inc.
|
|
* SPDX-License-Identifier: MPL-2.0
|
|
*/
|
|
|
|
import Component from '@glimmer/component';
|
|
import { tracked } from '@glimmer/tracking';
|
|
|
|
export default class ExportComponent extends Component {
|
|
@tracked
|
|
wrapTTL = null;
|
|
@tracked
|
|
exportVersion = false;
|
|
}
|