mirror of
https://github.com/Azure/cosmos-explorer.git
synced 2025-02-12 19:25:17 +00:00
10 lines
181 B
TypeScript
10 lines
181 B
TypeScript
import { userContext } from "../UserContext";
|
|
|
|
export const getEntityName = (): string => {
|
|
if (userContext.apiType === "Mongo") {
|
|
return "document";
|
|
}
|
|
|
|
return "item";
|
|
};
|