documentdb: update _ts property type

_ts (retrieved from documentdb documents) is a number (not a string)
This commit is contained in:
Danilo Spinelli
2017-12-19 15:05:06 +01:00
committed by GitHub
parent 57c75d8b4d
commit d5f272b976

View File

@@ -133,7 +133,7 @@ export interface AbstractMeta extends UniqueId {
_self: string;
/** The time the object was created. */
_ts: string;
_ts: string | number;
_rid?: string;
_etag?: string;