Skip to content

Commit

Permalink
Merge pull request #167 from nikhilag/master
Browse files Browse the repository at this point in the history
Update Key.d.ts to fix build
  • Loading branch information
jasonbosco authored Aug 15, 2023
2 parents 8daab9d + 28a9ab9 commit 7945243
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion lib/Typesense/Key.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ export interface KeyCreateSchema {
collections: string[];
description?: string;
value?: string;
value_prefix? string;
value_prefix?: string;
expires_at?: number;
}
export interface KeyDeleteSchema {
Expand Down
1 change: 1 addition & 0 deletions src/Typesense/Key.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ export interface KeyCreateSchema {
collections: string[];
description?: string;
value?: string;
value_prefix?: string;
expires_at?: number;
}

Expand Down

0 comments on commit 7945243

Please sign in to comment.