import { Checking, type Test } from "hry-types"; import type { GetShortCustomEventsDoc } from "../GetCustomEventDoc"; import { mock_shortCustomEvents } from "./normal.test"; type StrResult = GetShortCustomEventsDoc; export type StrExpected = string; Checking; type NullResult = GetShortCustomEventsDoc; export type NullExpected = null; Checking; type UnionStrResult = GetShortCustomEventsDoc; export type UnionStrExpected = "male" | "female"; Checking; type ListResult = GetShortCustomEventsDoc; export type ListExpected = string | 0 | 1 | 2 | null; Checking;