Type Alias CollectionPrivateBinding

CollectionPrivateBinding: {
    method: WritableCache;
    type: "collection-method";
    weakset: Cache;
} | {
    getter: WritableCache | null;
    setter: WritableCache | null;
    type: "collection-accessor";
    weakset: Cache;
} | {
    type: "collection-property";
    weakmap: Cache;
}