/** https://docs.tsafe.dev/typeguard */ export function typeGuard(_value: any, isMatched: boolean): _value is T { return isMatched; }