kopia lustrzana https://github.com/shoelace-style/shoelace
make reflected types show up in docs
rodzic
0dbb72efe9
commit
e7d7469c4e
|
@ -32,6 +32,18 @@ function getTypeInfo(item) {
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (item.type.type === 'reflection' && item.type.declaration?.children) {
|
||||||
|
const args = item.type.declaration.children.map(prop => {
|
||||||
|
const name = prop.name;
|
||||||
|
const type = prop.type.name;
|
||||||
|
const isOptional = prop.flags.isOptional === true;
|
||||||
|
return `${name}${isOptional ? '?' : ''}: ${type}`;
|
||||||
|
});
|
||||||
|
|
||||||
|
// Display as an object
|
||||||
|
type += `{ ${args.join(', ')} }`;
|
||||||
|
}
|
||||||
|
|
||||||
return {
|
return {
|
||||||
type,
|
type,
|
||||||
values: values.length ? values : undefined
|
values: values.length ? values : undefined
|
||||||
|
|
Ładowanie…
Reference in New Issue