Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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