Skip to content

Commit f667525

Browse files
authored
Merge pull request #18 from datastructures-js/development
add index.d.ts
2 parents 9db602c + a0afe45 commit f667525

4 files changed

Lines changed: 12 additions & 3 deletions

File tree

.eslintrc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
{
22
"rules": {
3-
max-len: ["error", { "code": 80, "ignoreComments": true }],
3+
"max-len": ["error", { "code": 80, "ignoreComments": true }],
44
"comma-dangle": ["error", {
55
"functions": "ignore"
66
}],
7-
no-underscore-dangle: [
7+
"no-underscore-dangle": [
88
"error",
99
{ "allowAfterThis": true }
1010
]

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66

77
## [Unreleased]
88

9+
## [3.1.2] - 2021-06-20
10+
11+
### Fixed
12+
- index.d.ts
13+
914
## [3.1.1] - 2021-06-14
1015

1116
### Fixed

index.d.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
import { Stack } from './src/stack';
2+
3+
export { Stack }
4+

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@datastructures-js/stack",
3-
"version": "3.1.1",
3+
"version": "3.1.2",
44
"description": "stack implementation in javascript",
55
"main": "index.js",
66
"scripts": {

0 commit comments

Comments
 (0)