bitburner-src/src/Infiltration/ui/IMinigameProps.tsx

8 lines
223 B
TypeScript
Raw Normal View History

export interface IMinigameProps {
onSuccess: () => void;
onFailure: (options?: {
/** Failed due to using untrusted events (automation) */
automated: boolean;
}) => void;
difficulty: number;
}