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