@playlive/tiltify-search
    Preparing search index...

    Type Alias TiltifyFlag

    Generic shape of a flag entry returned by flags.tiltify.com/flags. The marketing site treats individual flags as opaque, and the production payload is usually [] for unauthenticated callers, so we keep the type permissive.

    type TiltifyFlag = {
        enabled?: boolean;
        key?: string;
        [key: string]: unknown;
    }

    Indexable

    • [key: string]: unknown
    Index
    enabled?: boolean
    key?: string