@azure/cosmos
Version:
Microsoft Azure Cosmos DB Service Node.js SDK for NOSQL API
9 lines • 301 B
TypeScript
/** Interface for setting unique keys on container creation */
export interface UniqueKeyPolicy {
uniqueKeys: UniqueKey[];
}
/** Interface for a single unique key passed as part of UniqueKeyPolicy */
export interface UniqueKey {
paths: string[];
}
//# sourceMappingURL=UniqueKeyPolicy.d.ts.map