fix: alias `TransactionCtorFields_DEPRECATED` back to the way it was for back-compat

This commit is contained in:
steveluscher 2022-06-07 09:51:32 -07:00 committed by Steven Luscher
parent f3c77f7d9e
commit 48d034b69d
1 changed files with 5 additions and 0 deletions

View File

@ -142,6 +142,11 @@ export type TransactionCtorFields_DEPRECATED = {
recentBlockhash?: Blockhash;
};
// For backward compatibility; an unfortunate consequence of being
// forced to over-export types by the documentation generator.
// See https://github.com/solana-labs/solana/pull/25820
export type TransactionCtorFields = TransactionCtorFields_DEPRECATED;
/**
* List of Transaction object fields that may be initialized at construction
*/