Creating Plot Twists
    Preparing search index...

    Type Alias ResolvedOptions<T>

    ResolvedOptions: {
        [K in keyof T]: T[K] extends BooleanDef
            ? boolean
            : T[K] extends NumberDef ? number : string
    }

    Infers the resolved value types from an options schema. Boolean options resolve to boolean, number options to number, and select/text options to string.

    Type Parameters