From 2fd597fa8eca8e7916ab616f09715434899c6955 Mon Sep 17 00:00:00 2001 From: Ayush Paul Date: Mon, 13 Jan 2025 16:26:43 -0500 Subject: [PATCH] fix missing import in docs (#2227) saw this while reading docs, just wanted to submit a quick fix. --- website/docs/api/clients/typescript.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/docs/api/clients/typescript.md b/website/docs/api/clients/typescript.md index bf9aef6bef..3360da1316 100644 --- a/website/docs/api/clients/typescript.md +++ b/website/docs/api/clients/typescript.md @@ -31,7 +31,7 @@ The client exports: These compose together, e.g.: ```ts -import { ShapeStream } from '@electric-sql/client' +import { ShapeStream, Shape } from '@electric-sql/client' const stream = new ShapeStream({ url: `http://localhost:3000/v1/shape`,