Just want to see whether I understand the difference between typescript exports that use the default keyword and 'normal' exports. For example:
import validate from "./StaticZipCodeValidator";
In this case we don't need to to surround validate with curly {} braces, since it's the default export of "./StaticZipCodeValidator";
So when exporting defaults we don't use curly braces as shown here:
declare let $: JQuery;
export default $;
And when importing we also don't use curly braces. Did I miss anything?