summaryrefslogtreecommitdiff
path: root/frontend/types.js
blob: 2e948f45f6d6511ca6b34e6ebaacafc5ae1bc8e3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
import { with_type, crud_type } from './api/crud.types'

export const graph = crud_type('graph', [])
export const page = crud_type('page', [])
export const tile = crud_type('tile', [])

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

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

export const init = '@@INIT'