UNPKG

@azure/cosmos

Version:
9 lines 301 B
/** 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