Skip to content
This repository was archived by the owner on Oct 11, 2024. It is now read-only.

Commit 1a1b24b

Browse files
authored
Add types
Closes GH-5. Closes GH-6. Reviewed-by: Christian Murphy <[email protected]> Reviewed-by: Titus Wormer <[email protected]>
1 parent d8c9eb4 commit 1a1b24b

5 files changed

+43
-3
lines changed

package.json

+8-3
Original file line numberDiff line numberDiff line change
@@ -24,16 +24,20 @@
2424
"John Otander <[email protected]> (https://johno.com)",
2525
"Titus Wormer <[email protected]> (https://wooorm.com)",
2626
"Brent Jackson <[email protected]>",
27-
"Michele Bertoli <[email protected]>"
27+
"Michele Bertoli <[email protected]>",
28+
"José Luis Sandoval Alaguna <[email protected]> (https://uzmani.tech/)"
2829
],
30+
"types": "types/index.d.ts",
2931
"files": [
32+
"types/index.d.ts",
3033
"index.js"
3134
],
3235
"dependencies": {
3336
"hast-util-whitespace": "^1.0.0",
3437
"unist-util-visit": "^2.0.0"
3538
},
3639
"devDependencies": {
40+
"dtslint": "^4.1.0",
3741
"nyc": "^15.0.0",
3842
"prettier": "^2.0.0",
3943
"remark": "^13.0.0",
@@ -44,10 +48,11 @@
4448
"xo": "^0.37.0"
4549
},
4650
"scripts": {
47-
"format": "remark . -qfo && prettier . -w --loglevel warn && xo --fix",
51+
"format": "remark . -qfo && prettier . -w --loglevel warn && xo --fix --ignore types",
4852
"test-api": "node test",
4953
"test-coverage": "nyc --reporter lcov tape test.js",
50-
"test": "npm run format && npm run test-coverage"
54+
"test-types": "dtslint types",
55+
"test": "npm run format && npm run test-coverage && npm run test-types"
5156
},
5257
"nyc": {
5358
"check-coverage": true,

types/index.d.ts

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
// TypeScript Version: 3.8
2+
3+
import type {Plugin} from 'unified'
4+
5+
/**
6+
* Remark to remove the wrapping paragraph for images.
7+
*/
8+
declare const remarkUnwrapImages: Plugin<[]>
9+
10+
export = remarkUnwrapImages

types/remark-unwrap-images-tests.ts

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
import unified = require('unified')
2+
import unwrap = require('remark-unwrap-images')
3+
4+
unified().use(unwrap)

types/tsconfig.json

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
{
2+
"compilerOptions": {
3+
"lib": [
4+
"es2015"
5+
],
6+
"strict": true,
7+
"baseUrl": ".",
8+
"paths": {
9+
"remark-unwrap-images": [
10+
"."
11+
]
12+
}
13+
}
14+
}

types/tslint.json

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
{
2+
"extends": "dtslint/dtslint.json",
3+
"rules": {
4+
"semicolon": false,
5+
"whitespace": false
6+
}
7+
}

0 commit comments

Comments
 (0)