Langfuse JS/TS SDKs
    Preparing search index...

    Interface DashboardWidgetFilter

    A dashboard widget filter in Langfuse filter-state shape.

    Filter shapes depend on type, for example string filters use a string value, option filters use a list of strings, and object filters include key.

    interface DashboardWidgetFilter {
        column: string;
        key?: string;
        operator: string;
        type: string;
        value?: unknown;
    }
    Index

    Properties

    column: string
    key?: string
    operator: string
    type: string
    value?: unknown