Page Contents
  
 
    
Home > @loopback/context > ClassBindingSource
ClassBindingSource type
Binding source for toClass
Signature:
export type ClassBindingSource<T> = {
    type: BindingType.CLASS;
    value: Constructor<T>;
};
References: BindingType.CLASS, Constructor