chore(api): update api generator to include parts in the public API (#21110)

This commit is contained in:
Brandy Carney
2020-04-22 15:41:44 -04:00
committed by GitHub
parent e442324753
commit ae0a98924f

View File

@ -35,6 +35,9 @@ function generateComponent(component, content) {
component.styles.forEach(prop => {
content.push(`${component.tag},css-prop,${prop.name}`);
});
component.parts.forEach(part => {
content.push(`${component.tag},part,${part.name}`);
});
}
exports.apiSpecGenerator = apiSpecGenerator;