Skip to content

Commit 5159866

Browse files
authored
Add uuid/padded keygen types.
Fixes #656.
1 parent 1aac0fd commit 5159866

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/util/types.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ export type Errback<T> = (err: Error | null, result?: T) => void;
22

33
// The following types are based on the official @arangodb types
44

5-
export type KeyGeneratorType = "traditional" | "autoincrement";
5+
export type KeyGeneratorType = "traditional" | "autoincrement" | "uuid" | "padded";
66

77
export interface CollectionChecksum {
88
checksum: string;

0 commit comments

Comments
 (0)