option-parent.d-CnYuuMkO.d.ts 634 B

1234567891011121314151617181920
  1. import { Signal, InjectionToken } from '@angular/core';
  2. /**
  3. * Describes a parent component that manages a list of options.
  4. * Contains properties that the options can inherit.
  5. * @docs-private
  6. */
  7. interface MatOptionParentComponent {
  8. disableRipple?: boolean | Signal<boolean>;
  9. multiple?: boolean;
  10. inertGroups?: boolean;
  11. hideSingleSelectionIndicator?: boolean;
  12. }
  13. /**
  14. * Injection token used to provide the parent component to options.
  15. */
  16. declare const MAT_OPTION_PARENT_COMPONENT: InjectionToken<MatOptionParentComponent>;
  17. export { MAT_OPTION_PARENT_COMPONENT as a };
  18. export type { MatOptionParentComponent as M };