Is there a specific syntax to export a function from another module in an interface or a namespace? I couldn't find the right way to do it. What would be the correct syntax?
import {myFunction} from './a'
export interface MyInterface
{
MyFunction=typeof myFunction;
}
Appreciate the help