tiny-feature-flags
    Preparing search index...

    Interface FlagContext

    Represents the context used when evaluating flags, such as a user identifier and optional traits.

    interface FlagContext {
        traits?: Record<string, string>;
        userId?: string;
    }
    Index

    Properties

    Properties

    traits?: Record<string, string>
    userId?: string