From: Jérôme Benoit Date: Tue, 11 Apr 2023 20:43:34 +0000 (+0200) Subject: docs: add missing exports X-Git-Tag: v2.4.7~6 X-Git-Url: https://git.piment-noir.org/?a=commitdiff_plain;h=4342a45e734bdf35316b34623176f741b2f81e86;p=poolifier.git docs: add missing exports Signed-off-by: Jérôme Benoit --- 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'