Skip to content

Commit e3cb096

Browse files
committed
Add JSDoc based types
1 parent fce892a commit e3cb096

File tree

4 files changed

+63
-1
lines changed

4 files changed

+63
-1
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
.DS_Store
2+
*.d.ts
23
*.log
34
coverage/
45
node_modules/

index.js

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,49 @@
1+
/**
2+
* @typedef {import('unist').Position} Position
3+
* @typedef {import('unist').Point} Point
4+
*
5+
* @typedef {Partial<Point>} PointLike
6+
*
7+
* @typedef {Object} PositionLike
8+
* @property {PointLike} [start]
9+
* @property {PointLike} [end]
10+
*
11+
* @typedef {Object} NodeLike
12+
* @property {PositionLike} [position]
13+
*/
14+
115
export var pointStart = point('start')
216
export var pointEnd = point('end')
317

18+
/**
19+
* Get the positional info of `node`.
20+
*
21+
* @param {NodeLike} [node]
22+
* @returns {Position}
23+
*/
424
export function position(node) {
525
return {start: pointStart(node), end: pointEnd(node)}
626
}
727

28+
/**
29+
* Get the positional info of `node`.
30+
*
31+
* @param {'start'|'end'} type
32+
*/
833
function point(type) {
934
point.displayName = type
1035

1136
return point
1237

38+
/**
39+
* Get the positional info of `node`.
40+
*
41+
* @param {NodeLike} [node]
42+
* @returns {Point}
43+
*/
1344
function point(node) {
45+
/** @type {Point} */
46+
// @ts-ignore looks like a point
1447
var point = (node && node.position && node.position[type]) || {}
1548

1649
return {

package.json

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,22 +25,30 @@
2525
"sideEffects": false,
2626
"type": "module",
2727
"main": "index.js",
28+
"types": "index.d.ts",
2829
"files": [
30+
"index.d.ts",
2931
"index.js"
3032
],
3133
"devDependencies": {
34+
"@types/tape": "^4.0.0",
3235
"c8": "^7.0.0",
3336
"prettier": "^2.0.0",
3437
"remark-cli": "^9.0.0",
3538
"remark-preset-wooorm": "^8.0.0",
39+
"rimraf": "^3.0.0",
3640
"tape": "^5.0.0",
41+
"type-coverage": "^2.0.0",
42+
"typescript": "^4.0.0",
3743
"xo": "^0.38.0"
3844
},
3945
"scripts": {
46+
"prepack": "npm run build && npm run format",
47+
"build": "rimraf \"*.d.ts\" && tsc && type-coverage",
4048
"format": "remark . -qfo && prettier . -w --loglevel warn && xo --fix",
4149
"test-api": "node test.js",
4250
"test-coverage": "c8 --check-coverage --branches 100 --functions 100 --lines 100 --statements 100 --reporter lcov node test.js",
43-
"test": "npm run format && npm run test-coverage"
51+
"test": "npm run build && npm run format && npm run test-coverage"
4452
},
4553
"prettier": {
4654
"tabWidth": 2,
@@ -62,5 +70,10 @@
6270
"plugins": [
6371
"preset-wooorm"
6472
]
73+
},
74+
"typeCoverage": {
75+
"atLeast": 100,
76+
"detail": true,
77+
"strict": true
6578
}
6679
}

tsconfig.json

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
{
2+
"include": ["*.js"],
3+
"compilerOptions": {
4+
"target": "ES2020",
5+
"lib": ["ES2020"],
6+
"module": "ES2020",
7+
"moduleResolution": "node",
8+
"allowJs": true,
9+
"checkJs": true,
10+
"declaration": true,
11+
"emitDeclarationOnly": true,
12+
"allowSyntheticDefaultImports": true,
13+
"skipLibCheck": true
14+
}
15+
}

0 commit comments

Comments
 (0)