We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9b7e99d commit f3648f0Copy full SHA for f3648f0
README.md
@@ -13,6 +13,23 @@ Workarounds without using numeric literals (e.g. define numbers by recursion) lo
13
14
Typescript >=2.8
15
16
+## Getting started
17
+
18
+Install package
19
20
+```
21
+$ npm i fixed-size-array
22
23
24
+Use type definitions in your Typescript project
25
26
+```javascript
27
+import { FixedSizeArray } from 'fixed-size-array';
28
29
+let d: FixedSizeArray<2, string>;
30
31
32
33
## Bugs and issues
34
35
Apparently, the package works as expected for many practical cases.
0 commit comments