13 lines
268 B
TypeScript
13 lines
268 B
TypeScript
import {IAPIDef} from '@rondo.dev/common'
|
|
import {IClientConfig} from './IClientConfig'
|
|
import {Store} from 'redux'
|
|
|
|
export interface IRenderer<Props> {
|
|
render<State>(
|
|
url: string,
|
|
store: Store<State>,
|
|
props: Props,
|
|
config: IClientConfig,
|
|
): any
|
|
}
|