From 4342a45e734bdf35316b34623176f741b2f81e86 Mon Sep 17 00:00:00 2001 From: =?utf8?q?J=C3=A9r=C3=B4me=20Benoit?= Date: Tue, 11 Apr 2023 22:43:34 +0200 Subject: [PATCH] docs: add missing exports MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Signed-off-by: Jérôme Benoit --- src/circular-array.ts | 2 +- src/index.ts | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/src/circular-array.ts b/src/circular-array.ts index 8adf4b5f..2ffee18e 100644 --- a/src/circular-array.ts +++ b/src/circular-array.ts @@ -3,7 +3,7 @@ const DEFAULT_CIRCULAR_ARRAY_SIZE = 1024 /** - * Array with a maximum length shifting items when full. + * Array with a maximum length and shifting items when full. */ export class CircularArray extends Array { public size: number diff --git a/src/index.ts b/src/index.ts index 3cc6fa03..dce00380 100644 --- a/src/index.ts +++ b/src/index.ts @@ -42,3 +42,4 @@ export type { PromiseResponseWrapper, MessageValue } from './utility-types' +export type { CircularArray } from './circular-array' -- 2.34.1