summaryrefslogtreecommitdiff
path: root/animism-align/frontend/types.js
blob: d38cd6894c4c772556ef56dc3017712e6177bf17 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
import { with_type, crud_type } from './api/crud.types'

export const api = crud_type('api', [])

export const upload = crud_type('upload', [])
export const peaks = crud_type('peaks', [])
export const text = crud_type('text', [])
export const timestamp = crud_type('timestamp', [])
export const paragraph = crud_type('paragraph', [])
export const align = crud_type('align', [
  'set_display_setting',
])

export const site = with_type('site', [
])

export const system = with_type('system', [
])

export const init = '@@INIT'