2017-12-15 00:23:45 +09:00
|
|
|
extends ../../layout.pug
|
|
|
|
include ../mixins
|
|
|
|
|
|
|
|
block meta
|
2018-04-18 18:39:04 +09:00
|
|
|
link(rel="stylesheet" href="/docs/assets/api/entities/style.css")
|
2017-12-15 00:23:45 +09:00
|
|
|
|
|
|
|
block main
|
|
|
|
h1= name
|
|
|
|
|
2017-12-15 06:41:57 +09:00
|
|
|
p#desc= desc[lang] || desc['ja']
|
2017-12-15 00:23:45 +09:00
|
|
|
|
|
|
|
section
|
2018-07-06 20:27:48 +09:00
|
|
|
h2= i18n('docs.api.entities.properties')
|
2017-12-15 00:23:45 +09:00
|
|
|
+propTable(props)
|
|
|
|
|
|
|
|
if propDefs
|
|
|
|
each propDef in propDefs
|
|
|
|
section(id= propDef.name)
|
|
|
|
h3= propDef.name
|
|
|
|
+propTable(propDef.params)
|