Benefits of Importing Effect Code Using Namespace Import vs. Named Import

Are there some benefits of importing effect code like that:
import * as Effect from 'effect/Effect';

instead of:
import { Effect } from 'effect';
Was this page helpful?