Search
    Preparing search index...
    interface IActionFactory {
        bound: (
            target: Object,
            propertyKey: string | symbol,
            descriptor?: PropertyDescriptor,
        ) => void;
        <T extends undefined | null | Function>(fn: T): T & IAction;
        <T extends undefined | null | Function>(name: string, fn: T): T & IAction;
        (
            customName: string,
        ): (
            target: Object,
            key: string | symbol,
            baseDescriptor?: PropertyDescriptor,
        ) => void;
        (
            target: Object,
            propertyKey: string | symbol,
            descriptor?: PropertyDescriptor,
        ): void;
    }
    • Type Parameters

      • T extends undefined | null | Function

      Parameters

      • fn: T

      Returns T & IAction

    • Type Parameters

      • T extends undefined | null | Function

      Parameters

      • name: string
      • fn: T

      Returns T & IAction

    • Parameters

      • customName: string

      Returns (
          target: Object,
          key: string | symbol,
          baseDescriptor?: PropertyDescriptor,
      ) => void

    • Parameters

      • target: Object
      • propertyKey: string | symbol
      • Optionaldescriptor: PropertyDescriptor

      Returns void

    Index

    Properties

    Properties

    bound: (
        target: Object,
        propertyKey: string | symbol,
        descriptor?: PropertyDescriptor,
    ) => void