export interface ErrorInterface { body?: never; type?: string; root?: { Envelope: { Body: { Fault: FaultInterface; }; }; }; } export interface FaultInterface { faultcode: {}; faultstrings: {}; }