@vendure/core
Version:
A modern, headless ecommerce framework
14 lines (13 loc) • 495 B
TypeScript
import { CustomerChannelAssignmentStrategy } from './customer-channel-assignment-strategy';
/**
* @description
* The default {@link CustomerChannelAssignmentStrategy}: a Customer is auto-assigned to whichever
* Channel they authenticate against.
*
* @docsCategory auth
* @docsPage CustomerChannelAssignmentStrategy
* @since 3.7.0
*/
export declare class DefaultCustomerChannelAssignmentStrategy implements CustomerChannelAssignmentStrategy {
canAssignCustomerToChannel(): boolean;
}