I have a class called IGeneric
that is exported to module A and imported into module B. However, I am unable to use this exported class in module B.
Please note that the exported class is not a component, directive, or service; it is a plain TypeScript class.
Any assistance would be greatly appreciated. Here is the class that I am attempting to export:
export class IGeneric {
header: any[];
content: [{
label: any,
value: any
}]
}