NonFixedAttributeNames<A>: {
    [K in keyof A]: A[K] extends FixedAttribute<any, any>
        ? never
        : A[K] extends OptionalFixedAttribute<any, any>
            ? never
            : K
}[keyof A]

Type Parameters