export api types to ts (#2583)

This commit is contained in:
Aiden McClelland
2024-04-01 13:14:22 -06:00
committed by GitHub
parent 8884f64b4e
commit f021ad9b0a
94 changed files with 629 additions and 179 deletions

View File

@@ -0,0 +1,10 @@
// This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually.
import type { EncryptedWire } from "./EncryptedWire";
import type { RecoverySource } from "./RecoverySource";
export type ExecuteParams = {
startOsLogicalname: string;
startOsPassword: EncryptedWire;
recoverySource: RecoverySource | null;
recoveryPassword: EncryptedWire | null;
};