@yesstudio/nuxt-composables
    Preparing search index...

    Type Alias MapUseIgnorableWatchSourceValues<Sources, Immediate>

    MapUseIgnorableWatchSourceValues: {
        [Index in keyof Sources]: Sources[Index] extends WatchSource<
            infer Value,
        >
            ? Immediate extends false ? Value : Value | undefined
            : never
    }

    Represents the mapped values of an array of WatchSource types to their corresponding values.

    Type Parameters

    • Sources

      The type of the watch sources array.

    • Immediate

      Indicates whether the watch effect is immediate.