Endo
    Preparing search index...

    Type Alias GuardedKit<F, GK>

    GuardedKit: {
        [K in keyof F as string extends K ? never : K]: Guarded<
            F[K],
            K extends keyof GK ? GK[K] : InterfaceGuard,
        >
    }

    Type Parameters