Takaro - v0.6.0
    Preparing search index...

    An interface describing a user of an application or a handled request.

    interface User {
        email?: string;
        geo?: GeoLocation;
        id?: string | number;
        ip_address?: string | null;
        username?: string;
        [key: string]: any;
    }

    Indexable

    • [key: string]: any
    Index

    Properties

    email?: string
    geo?: GeoLocation
    id?: string | number
    ip_address?: string | null
    username?: string