Files
2026-05-06 18:55:16 -05:00

8 lines
369 B
TypeScript

import type { IBackupVaultRef } from '../../../interfaces/generated/aws-backup-interfaces.generated';
import type { IBackupVault } from '../vault';
/**
* Convert an IBackupVaultRef to IBackupVault, throwing an error if the instance
* doesn't implement the full IBackupVault interface.
*/
export declare function toIBackupVault(vault: IBackupVaultRef): IBackupVault;