docs: add missing exports
authorJérôme Benoit <jerome.benoit@sap.com>
Tue, 11 Apr 2023 20:43:34 +0000 (22:43 +0200)
committerJérôme Benoit <jerome.benoit@sap.com>
Tue, 11 Apr 2023 20:43:34 +0000 (22:43 +0200)
Signed-off-by: Jérôme Benoit <jerome.benoit@sap.com>
src/circular-array.ts
src/index.ts

index 8adf4b5fb6ec2a49b3d2e0e3e0d6fe4e6237c5a7..2ffee18e3a14652e1203a9af1f215a885917dbd4 100644 (file)
@@ -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<T> extends Array<T> {
   public size: number
index 3cc6fa0314825c09d6ab3965551ef950f5329aa2..dce003805d0ee3c7d44d499d33ce4454c188f8e0 100644 (file)
@@ -42,3 +42,4 @@ export type {
   PromiseResponseWrapper,
   MessageValue
 } from './utility-types'
+export type { CircularArray } from './circular-array'