If my original .d.ts
definition file is like this:
main.d.ts
:
declare module myMod {
}
Now, let's say I want to separate out the security definitions into another file but keep them under the same module. Here's what I'm thinking:
main.security.d.ts
:
declare module myMod {
module security {
}
}
How can I implement this setup effectively?