We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4e474b3 commit 2038a37Copy full SHA for 2038a37
tests/env/typescript-node/src/index.ts
@@ -15,7 +15,7 @@ const config = {
15
apiKey: 'masterKey',
16
}
17
18
-export interface Movie {
+interface Movie {
19
id: number
20
title: string
21
genre?: string
tests/search.test.ts
@@ -9,7 +9,7 @@ import {
9
getClient,
10
datasetWithNests,
11
} from './utils/meilisearch-test-utils'
12
-import { Movie } from './env/typescript-node/src'
+
13
14
const index = {
uid: 'movies_test',
@@ -18,7 +18,7 @@ const emptyIndex = {
uid: 'empty_test',
-const dataset: Movie[] = [
+const dataset = [
22
{
23
id: 123,
24
title: 'Pride and Prejudice',
0 commit comments