| 105 | |
| 106 | // Riot Pure Component interface that should be used together with riot.pure |
| 107 | export interface RiotPureComponent<Context = object> { |
| 108 | mount(element: HTMLElement, context?: Context): void |
| 109 | update(context?: Context): void |
| 110 | unmount(keepRootElement: boolean): void |
| 111 | } |
| 112 | |
| 113 | export interface PureComponentFactoryFunction< |
| 114 | InitialProps extends DefaultProps = DefaultProps, |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…