fedisearch/application/src/graphql/common/types/StatsQueryInput.ts

8 wiersze
300 B
TypeScript
Czysty Zwykły widok Historia

2022-09-14 19:16:00 +00:00
import { z } from 'zod'
import { createSortingInputSchema } from './SortingInput'
import { statsSortingBySchema } from './StatsSortingByEnum'
export const statsQueryInputSchema = createSortingInputSchema(statsSortingBySchema)
export type StatsQueryInputType = z.infer<typeof statsQueryInputSchema>