this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at main 15 lines 349 B view raw
1import * as v from "valibot"; 2 3export const articleSlugs = [ 4 "basic", 5 "preloading", 6 "intent-preloading", 7 "pagination", 8 "filters", 9 "debounced-preload-filters", 10 "live-query", 11 "live-query-filters", 12] as const; 13 14export const ArticleSlugSchema = v.picklist(articleSlugs); 15export type ArticleSlug = v.InferInput<typeof ArticleSlugSchema>;