Skip to content

Commit

Permalink
Updated types [skip ci]
Browse files Browse the repository at this point in the history
  • Loading branch information
ankane committed Jun 28, 2024
1 parent b91acc9 commit 9c5cd66
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion types/mikro-orm/halfvec.d.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
export class HalfvecType extends Type<string, string> {
constructor();
convertToDatabaseValue(value: any, platform: any): string;
convertToDatabaseValue(value: any, platform: any): any;
convertToJSValue(value: any, platform: any): any;
getColumnType(prop: any, platform: any): any;
}
Expand Down
2 changes: 1 addition & 1 deletion types/mikro-orm/vector.d.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
export class VectorType extends Type<string, string> {
constructor();
convertToDatabaseValue(value: any, platform: any): string;
convertToDatabaseValue(value: any, platform: any): any;
convertToJSValue(value: any, platform: any): any;
getColumnType(prop: any, platform: any): any;
}
Expand Down

0 comments on commit 9c5cd66

Please sign in to comment.