Free Touch Pricker
    Preparing search index...

    Interface Notifiable

    Interface for objects that can receive notifications from children

    Some classes (e.g. .AbstractContainer) can contain blocks. Blocks notify these classes when they are changed.

    interface Notifiable {
        notify: (index: number) => void;
    }

    Implemented by

    Index

    Properties

    Properties

    notify: (index: number) => void

    Receives a notification from a block that has changed

    Type Declaration

      • (index: number): void
      • Parameters

        • index: number

          index of changed block in container

        Returns void