From b743987e4abb2c05b8542f196d4ae3dc1409c7ba Mon Sep 17 00:00:00 2001 From: Hazem Khaled Date: Sun, 26 Feb 2023 20:37:19 +0300 Subject: [PATCH] Import types from the right path (#184) --- docs/apl.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/apl.md b/docs/apl.md index f632526..4b37898 100644 --- a/docs/apl.md +++ b/docs/apl.md @@ -66,7 +66,7 @@ Let's create an APL, which uses Redis for data storage: ```ts import { createClient } from "redis"; -import { APL, AuthData } from "@saleor/app-sdk/types/apl"; +import { APL, AuthData } from "@saleor/app-sdk/apl"; const client = createClient(); await client.connect();