@studiokeywi/banjo - v0.0.1
    Preparing search index...

    Type Alias RemoveIndexSignature<Src, Type>

    RemoveIndexSignature: {
        [Key in keyof Src as [Type] extends [Key] ? never : Key]: [Type] extends [
            Key,
        ]
            ? never
            : Src[Key]
    }

    Utility type for removing index signature types from an object

    Type Parameters

    • Src
    • Type