@drincs/pixi-vn
Version:
Pixi'VN is a npm package that provides various features for creating visual novels.
20 lines (18 loc) • 483 B
TypeScript
/**
* 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
* ```typescript
* // pixi-vn.types.ts
* declare module '@drincs/pixi-vn/dist/override' {
* interface StepLabelProps {
* navigate: (route: string) => void,
* [key: string]: any
* }
* }
* ```
*/
interface StepLabelProps {
[key: string]: any;
}
export type { StepLabelProps as default };