// configuration.d.ts
export interface Configuration {
MENU_STRUCTURE: Node[];
}
interface Node {
name: string;
}
Looking at the snippet above, I am aiming to only export Configuration
. However, I noticed that I can also import Node
from an external .ts file. Is there a method to limit the export of Node
?
Appreciate your help.