Skip to content

EntityKeyInput

type EntityKeyInput<Item> =
| {
key: Partial<Item>;
}
| {
index: {
[index: string]: Partial<Item>;
};
};

Item