Optional injector reference if created outside injector context and MutationObserver options. If no MutationObserver options are passed then only all attributes are observed.

interface ResizeSignalOptions {
    box?: ResizeObserverBoxOptions;
    debugName?: string;
    injector?: Injector;
}

Hierarchy

  • ResizeObserverOptions
  • Pick<CreateSignalOptions<unknown>, "debugName">
    • ResizeSignalOptions

Properties

box?: ResizeObserverBoxOptions
debugName?: string

A debug name for the signal. Used in Angular DevTools to identify the signal.

injector?: Injector

This signal must either be created in an injection context or passed an injector.