Logos DX
    Preparing search index...

    Interface PropertyStoreOptions<T>

    PropertyStore constructor options.

    interface PropertyStoreOptions<T> {
        defaults?: T;
        methodOverrides?: Partial<
            Partial<Record<_InternalHttpMethods, Partial<T>>>,
        >;
        validate?: PropertyValidateFn<T>;
    }

    Type Parameters

    • T

      The property type

    Index

    Properties

    defaults?: T

    Default values applied to all requests

    Method-specific overrides (e.g., POST has different headers than GET)

    validate?: PropertyValidateFn<T>

    Validation function called when values are set