Import types from the right path (#184)
This commit is contained in:
parent
020d6aaa39
commit
b743987e4a
1 changed files with 1 additions and 1 deletions
|
@ -66,7 +66,7 @@ Let's create an APL, which uses Redis for data storage:
|
||||||
|
|
||||||
```ts
|
```ts
|
||||||
import { createClient } from "redis";
|
import { createClient } from "redis";
|
||||||
import { APL, AuthData } from "@saleor/app-sdk/types/apl";
|
import { APL, AuthData } from "@saleor/app-sdk/apl";
|
||||||
|
|
||||||
const client = createClient();
|
const client = createClient();
|
||||||
await client.connect();
|
await client.connect();
|
||||||
|
|
Loading…
Reference in a new issue