import { Checking, type Test } from "hry-types"; import type { Bubbles, BubblesCapture, BubblesCaptureComposed, BubblesComposed, Capture, CaptureComposed, } from "../CustomEventsTag"; import type { GetFullCustomEventsDoc } from "../GetCustomEventDoc"; import { mock_fullCustomEvents } from "./normal.test"; // bubbles type bubblesResult = GetFullCustomEventsDoc; export type bubblesExpected = string | Bubbles; Checking; // CapturePhase type CapturePhaseResult = GetFullCustomEventsDoc; export type CapturePhaseExpected = Capture | null; Checking; // bubbles_capturePhase type BubblesCapturePhaseResult = GetFullCustomEventsDoc; export type BubblesCapturePhaseExpected = string | number | BubblesCapture; Checking; // bubbles_composed type BubblesComposedResult = GetFullCustomEventsDoc; export type BubblesComposedExpected = "male" | "female" | BubblesComposed; Checking; // capturePhase_composed type CapturePhaseComposedResult = GetFullCustomEventsDoc; export type CapturePhaseComposedExpected = string | 0 | 1 | 2 | null | CaptureComposed; Checking; // bubbles_capturePhase_composed type BubblesCapturePhaseComposedResult = GetFullCustomEventsDoc< typeof mock_fullCustomEvents["bubbles_capturePhase_composed"] >; export type BubblesCapturePhaseComposedExpected = boolean | BubblesCaptureComposed; Checking;