Skip to content

Commit

Permalink
Generated code for commit b07f5f9. (#341)
Browse files Browse the repository at this point in the history
Co-authored-by: Clément Vannicatte <[email protected]>
Co-authored-by: algolia-bot <[email protected]>
  • Loading branch information
shortcuts and algolia-bot authored Apr 6, 2022
1 parent b07f5f9 commit 57e7ca0
Show file tree
Hide file tree
Showing 13 changed files with 13 additions and 13 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/**
* Error.
*/
export type ErrorBase = {
export type ErrorBase = Record<string, any> & {
message?: string;
};
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/**
* Error.
*/
export type ErrorBase = {
export type ErrorBase = Record<string, any> & {
message?: string;
};
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/**
* Error.
*/
export type ErrorBase = {
export type ErrorBase = Record<string, any> & {
message?: string;
};
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/**
* Error.
*/
export type ErrorBase = {
export type ErrorBase = Record<string, any> & {
message?: string;
};
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/**
* Error.
*/
export type ErrorBase = {
export type ErrorBase = Record<string, any> & {
message?: string;
};
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/**
* Error.
*/
export type ErrorBase = {
export type ErrorBase = Record<string, any> & {
message?: string;
};
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import type { DictionaryEntryState } from './dictionaryEntryState';
/**
* A dictionary entry.
*/
export type DictionaryEntry = {
export type DictionaryEntry = Record<string, any> & {
/**
* Unique identifier of the object.
*/
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/**
* Error.
*/
export type ErrorBase = {
export type ErrorBase = Record<string, any> & {
message?: string;
};
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import type { SnippetResult } from './snippetResult';
/**
* A single hit.
*/
export type Hit = {
export type Hit = Record<string, any> & {
/**
* Unique identifier of the object.
*/
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import type { SynonymHit } from './synonymHit';

export type SearchSynonymsResponse = {
export type SearchSynonymsResponse = Record<string, any> & {
/**
* Array of synonym objects.
*/
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/**
* Error.
*/
export type ErrorBase = {
export type ErrorBase = Record<string, any> & {
message?: string;
};
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/**
* Error.
*/
export type ErrorBase = {
export type ErrorBase = Record<string, any> & {
message?: string;
};
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import type { SnippetResult } from './snippetResult';
/**
* A Recommend hit.
*/
export type RecommendHit = {
export type RecommendHit = Record<string, any> & {
/**
* Unique identifier of the object.
*/
Expand Down

0 comments on commit 57e7ca0

Please sign in to comment.