@fluentity/core
    Preparing search index...

    Type Alias PropertyDecoratorType

    PropertyDecoratorType: (target: object, key: string | symbol) => void

    Type for property decorator functions. Defines the signature for decorators that modify class properties.

    Type declaration

      • (target: object, key: string | symbol): void
      • Parameters

        • target: object
        • key: string | symbol

        Returns void

    const decorator: PropertyDecoratorType = (target, key) => {
    // Modify the property
    };