1
1
/**
2
- * @typedef {import('hast').ElementContent } ElementContent
3
- * @typedef {import('hast').Nodes } Nodes
4
- * @typedef {import('hast').Root } Root
5
- *
6
- * @typedef {import('hastscript').Properties } Properties
7
- *
8
- * @typedef {import('vfile').VFile } VFile
9
- */
10
-
11
- /**
12
- * @typedef Options
13
- * Configuration.
14
- * @property {Array<string> | string | null | undefined } [css]
15
- * URLs to stylesheets to use in `<link>`s (optional).
16
- * @property {'auto' | 'ltr' | 'rtl' | null | undefined } [dir]
17
- * Direction of the document (optional).
18
- * @property {Array<string> | string | null | undefined } [js]
19
- * URLs to scripts to use as `src` on `<script>`s (optional).
20
- * @property {string | null | undefined } [language='en']
21
- * Language of document (default: `'en'`); should be a
22
- * [BCP 47](https://tools.ietf.org/html/bcp47) language tag.
23
- * @property {Array<Properties> | Properties | null | undefined } [link]
24
- * Generate extra `<link>`s with these properties (optional); passed as
25
- * `properties` to [`hastscript`](https://github.com/syntax-tree/hastscript)
26
- * with `'link'`.
27
- * @property {Array<Properties> | Properties | null | undefined } [meta]
28
- * Generate extra `<meta>`s with these properties (optional); passed as
29
- * `properties` to [`hastscript`](https://github.com/syntax-tree/hastscript)
30
- * with `'meta'`.
31
- * @property {boolean | null | undefined } [responsive=true]
32
- * Generate a `meta[viewport]` (default: `true`).
33
- * @property {Array<string> | string | null | undefined } [script]
34
- * JavaScript source code of `<script>`s to add at end of `body` (optional).
35
- * @property {Array<string> | string | null | undefined } [style]
36
- * CSS source code of `<style>`s to add (optional).
37
- * @property {string | null | undefined } [title]
38
- * Text to use as title (optional); defaults to the file name (if any); can
39
- * bet set with `file.data.matter.title` (`vfile-matter`) and
40
- * `file.data.meta.title` (`rehype-infer-title-meta`), which are preferred.
2
+ * @import {ElementContent, Nodes, Root} from 'hast'
3
+ * @import {Options} from 'rehype-document'
4
+ * @import {VFile} from 'vfile'
41
5
*/
42
6
43
7
import { h } from 'hastscript'
44
8
45
- /** @type {Options } */
9
+ /** @type {Readonly< Options> } */
46
10
const emptyOptions = { }
47
11
48
12
/**
@@ -165,7 +129,7 @@ export default function rehypeDocument(options) {
165
129
*
166
130
* @template Thing
167
131
* Value kind.
168
- * @param {Array <Thing> | Thing | null | undefined } value
132
+ * @param {ReadonlyArray <Thing> | Thing | null | undefined } value
169
133
* Value to cast.
170
134
* @returns {Array<Thing> }
171
135
* List.
@@ -174,6 +138,6 @@ function toList(value) {
174
138
return value === null || value === undefined
175
139
? [ ]
176
140
: Array . isArray ( value )
177
- ? value
141
+ ? [ ... value ]
178
142
: [ value ]
179
143
}
0 commit comments