Skip to content

Commit 685bb31

Browse files
committed
fix build
1 parent 638ee26 commit 685bb31

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

packages/kit/types/index.d.ts

+4-3
Original file line numberDiff line numberDiff line change
@@ -1613,14 +1613,15 @@ declare module '@sveltejs/kit' {
16131613

16141614
interface PageNode {
16151615
depth: number;
1616+
/** The +page.svelte */
16161617
component?: string; // TODO supply default component if it's missing (bit of an edge case)
1618+
/** The +page.js/.ts */
16171619
universal?: string;
1620+
/** The +page.server.js/ts */
16181621
server?: string;
16191622
parent_id?: string;
16201623
parent?: PageNode;
1621-
/**
1622-
* Filled with the pages that reference this layout (if this is a layout)
1623-
*/
1624+
/** Filled with the pages that reference this layout (if this is a layout) */
16241625
child_pages?: PageNode[];
16251626
}
16261627

0 commit comments

Comments
 (0)