Fixing minor issues

This commit is contained in:
Chuck Skelton
2023-06-23 16:22:57 -07:00
parent 263ad9a5e6
commit bb8529c79c
4 changed files with 14 additions and 18 deletions

View File

@@ -166,7 +166,7 @@ export interface Database extends Resource {
collections?: Collection[];
}
export interface DocumentId extends Resource { }
export interface DocumentId extends Resource {}
export interface ConflictId extends Resource {
resourceId?: string;
@@ -198,7 +198,7 @@ export interface ComputedProperty {
query: string;
}
export type ComputedProperties = ComputedProperty[]
export type ComputedProperties = ComputedProperty[];
export interface PartitionKey {
paths: string[];