Type Utils
    Preparing search index...

    Variable andConst

    and: {
        <T1, T2>(
            guard1: TypeGuard<T1>,
            guard2: TypeGuard<T2>,
        ): TypeGuard<Merge<T1, T2>>;
        <TGuards extends TypeGuards<any>>(
            ...guards: TGuards,
        ): TypeGuard<TIntersection<GetTypeGuards<TGuards>>>;
    } & { optional: OptionalizedAnd } = ...