Vinyl
    Preparing search index...

    Type Alias DefaultStringPersistentItemOptions<T>

    DefaultStringPersistentItemOptions: Omit<
        PersistentItemOptions<T, string>,
        "persistence" | "deserialize" | "serialize",
    > & Partial<
        Pick<
            PersistentItemOptions<T, string>,
            "persistence" | "deserialize" | "serialize",
        >,
    >

    An alias for persistent item options with reasonable defaults for string serialization. This will use JSON stringify/parse and the global KeyValuePersistence object from persistenceRef.

    Type Parameters

    • T