I'm getting an error in 'cloudform-types/types/fms/policy.d.ts' when using version 6.1.0:
"error TS2440: Import declaration conflicts with local declaration of 'ResourceTag'".
I can see the conflict in the file:
import { ResourceBase, ResourceTag } from '../resource'; import { Value, List } from '../dataTypes'; export declare class ResourceTag { Key: Value<string>; Value?: Value<string>; constructor(properties: ResourceTag); } ...