Type Alias ExportLink

ExportLink: {
    export: SpecifierName | SpecifierValue;
    type: "export";
    variable: VariableName;
} | {
    export: SpecifierName & "default";
    type: "export";
    variable: null;
}