about summary refs log tree commit diff
path: root/src/state/queries/nuxs/definitions.ts
blob: 8166602c8ab7ad9aa14f7e034e11176b261d9b4d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import zod from 'zod'

import {BaseNux} from '#/state/queries/nuxs/types'

export enum Nux {
  NeueTypography = 'NeueTypography',
}

export const nuxNames = new Set(Object.values(Nux))

export type AppNux = BaseNux<{
  id: Nux.NeueTypography
  data: undefined
}>

export const NuxSchemas: Record<Nux, zod.ZodObject<any> | undefined> = {
  [Nux.NeueTypography]: undefined,
}