Can you provide guidance on creating a new interface - UIInterface that combines SummaryInterface with additional properties?
For example:
import { SummaryInterface } from 'x-api'; // summaryInterface includes 20+ predefined properties generated automatically
Here is my approach:
export interface UIInterface {
SummaryInterface &
{ displayStatus: string;
flag: boolean };
}