()
| 679 | } |
| 680 | |
| 681 | @computed get propsData(): IPublicTypePropsMap | IPublicTypePropsList | null { |
| 682 | if (!this.isParental() || this.componentName === 'Fragment') { |
| 683 | return null; |
| 684 | } |
| 685 | return this.props.export(IPublicEnumTransformStage.Serilize).props || null; |
| 686 | } |
| 687 | |
| 688 | hasSlots() { |
| 689 | return this._slots.length > 0; |
nothing calls this directly
no test coverage detected