@player-ui/player
Version:
11 lines • 398 B
TypeScript
import type { Player, PlayerPlugin } from "../player";
/**
* A plugin that taps into the flow controller to evaluate available expressions
* Expressions can be exposed via lifecycle "hooks" in flow/state nodes
* e.g: onStart, onEnd
*/
export declare class FlowExpPlugin implements PlayerPlugin {
name: string;
apply(player: Player): void;
}
//# sourceMappingURL=flow-exp-plugin.d.ts.map