Open fcollonval opened 6 months ago
With a snippet like,
import { AccordionItem as BaseAccordionItem } from '@microsoft/fast-foundation'; export class MyElement extends BaseAccordionItem { foo = 'foo'; }
The manifest as the following description:
"superclass": { "name": "BaseAccordionItem", "package": "@microsoft/fast-foundation" },
Wouldn't it be more interesting to know that we are using an alias and that the real name is AccordionItem. Something like:
AccordionItem
"superclass": { "alias": "BaseAccordionItem", "name": "AccordionItem", "package": "@microsoft/fast-foundation" },
With a snippet like,
The manifest as the following description:
Wouldn't it be more interesting to know that we are using an alias and that the real name is
AccordionItem
. Something like: