// Full export-from statement.
// export {a, b} from "A"
// export * from "A"
// export * as A from "A"
export function isExportFrom(node: any): boolean {
  return (node.type === 'ExportNamedDeclaration' || node.type === 'ExportAllDeclaration') && node.source != null;
}
