Type Alias Enum<T, TEnum>

Enum<T, TEnum>: TEnum extends readonly [string, ...string[]]
    ? Writable<TEnum>
    : T["const"] extends string
        ? [T["const"]]
        : [string, ...string[]]

Get the type of a JSONSchema string: array of constants for an enum, otherwise string[]. Strangeness is to convert it into the format expected by drizzle, which results in the correct type for the field from SQLite

Type Parameters