indexInterfaces
Interface: StepLabelProps
Defined in: src/narration/interfaces/StepLabelProps.ts:16
StepLabelPropsType is the type of the props that will be passed to the StepLabel. You can override this interface to add your own props.
Example
// pixi-vn.d.ts
declare module '@drincs/pixi-vn' {
interface StepLabelProps {
navigate: (route: string) => void,
[key: string]: any
}
}