mirror of
https://github.com/Azure/cosmos-explorer.git
synced 2026-01-24 12:14:17 +00:00
16 lines
295 B
TypeScript
16 lines
295 B
TypeScript
import { AccountKind } from "../../Common/Constants";
|
|
|
|
export const emulatorAccount = {
|
|
name: "",
|
|
id: "",
|
|
location: "",
|
|
type: "",
|
|
kind: AccountKind.DocumentDB,
|
|
properties: {
|
|
documentEndpoint: "",
|
|
tableEndpoint: "",
|
|
gremlinEndpoint: "",
|
|
cassandraEndpoint: "",
|
|
},
|
|
};
|