| 111 | } |
| 112 | |
| 113 | export interface PureComponentFactoryFunction< |
| 114 | InitialProps extends DefaultProps = DefaultProps, |
| 115 | Context = any, |
| 116 | > { |
| 117 | ({ |
| 118 | slots, |
| 119 | attributes, |
| 120 | props, |
| 121 | }: { |
| 122 | slots?: TagSlotData<Context>[] |
| 123 | attributes?: AttributeExpressionData<Context>[] |
| 124 | props?: InitialProps |
| 125 | }): RiotPureComponent<Context> |
| 126 | } |
| 127 | |
| 128 | // This object represents the Output of the Riot compiler |
| 129 | export interface RiotComponentWrapper<Component> { |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…