Errors returned by the private GirasolVirtualCardService.validateInput, and
re-surfaced by create.
Named and exported rather than derived via ErrorReturnedBy<typeof this.…>:
private members are emitted without their types, so that form degrades to
unknown in the .d.ts and — with skipLibCheck masking it at the producer
— surfaces only as result.error is of type unknown in consumers. The
getActiveCardAccount reference below is fine: it is protected, and only
private members lose their types in declaration output.
Errors returned by the private
GirasolVirtualCardService.validateInput, and re-surfaced bycreate.Named and exported rather than derived via
ErrorReturnedBy<typeof this.…>: private members are emitted without their types, so that form degrades tounknownin the.d.tsand — withskipLibCheckmasking it at the producer — surfaces only asresult.error is of type unknownin consumers. ThegetActiveCardAccountreference below is fine: it isprotected, and onlyprivatemembers lose their types in declaration output.