Skip to content

Commit d4cb34d

Browse files
committed
docs(vuepress): Update README
1 parent 361bdf0 commit d4cb34d

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

docs/README.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,13 +74,17 @@ The exported function receives an options argument with the following type signa
7474
```typescript
7575
interface options {
7676
inquirer: Inquirer;
77-
render: (path: string, data: object, options: object) => Promise;
77+
render: RenderInPlace;
78+
fs: FS;
79+
rimraf: Rimraf;
7880
where: string;
7981
}
8082
```
8183

8284
`inquirer` is from the [inquirer](https://www.npmjs.com/package/inquirer) module.
8385
`render` is from the [render-in-place](https://www.npmjs.com/package/render-in-place) module.
86+
`fs` is from the [fs-extra](https://www.npmjs.com/package/fs-extra) module.
87+
`rimraf` is from the [rimraf](https://www.npmjs.com/package/rimraf) module.
8488

8589
## npm templates
8690

0 commit comments

Comments
 (0)