@fluentity/core
    Preparing search index...

    Interface Attributes

    Base interface for model attributes that all models must implement. Provides the basic structure for model data and allows for dynamic properties.

    interface Attributes {
        id?: string | number;
        [key: string]: any;
    }

    Indexable

    • [key: string]: any

      Index signature allowing for dynamic properties of any type

    Index

    Properties

    Properties

    id?: string | number

    Unique identifier for the model instance. Can be either a string or number.