summaryrefslogtreecommitdiff
path: root/src/client/docs/api/entities/view.pug
blob: 3f50bfd3bd3abc6d8e1c30d8afd854ad95a5f161 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
extends ../../layout.pug
include ../mixins

block meta
	link(rel="stylesheet" href="/docs/assets/api/entities/style.css")

block main
	h1= name

	p#desc= desc[lang] || desc['ja']

	section
		h2= i18n('docs.api.entities.properties')
		+propTable(props)

		if propDefs
			each propDef in propDefs
				section(id= propDef.name)
					h3= propDef.name
					+propTable(propDef.props)