Skip to content

Commit 94ea897

Browse files
committedApr 19, 2024
Fix #122 - Better TS signature for /ssr
1 parent 33069a6 commit 94ea897

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed
 

‎rollup/ssr.cjs

+3-3
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ const init = join(__dirname, '..', 'esm', 'init-ssr.js');
66
const uhtml = readFileSync(init).toString();
77

88
const content = [
9-
'const document = content ? new DOMParser().parseFromString(content, ...rest) : new Document;',
9+
'const document = content ? new DOMParser().parseFromString(content, mimeType || \'text/html\') : new Document;',
1010
'const { constructor: DocumentFragment } = document.createDocumentFragment();',
1111
];
1212

@@ -29,8 +29,8 @@ Comment.prototype.toString = function toString() {
2929
}
3030
};
3131
32-
/** @type {(content:string?, ...rest:string[]) => import("./keyed.js")} */
33-
export default (content, ...rest) => ${
32+
/** @type {(content?: string, mimeType?: string) => import("./keyed.js")} */
33+
export default (content, mimeType) => ${
3434
// tested via integration
3535
fixExports(
3636
uhtml

0 commit comments

Comments
 (0)
Please sign in to comment.