Skip to content

Commit 64a4c75

Browse files
committed
reuse PrerenderOption and make it a public type
1 parent c20ae6f commit 64a4c75

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

packages/kit/src/runtime/server/page/fetch.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import { domain_matches, path_matches } from './cookie.js';
1010
* options: import('types').SSROptions;
1111
* state: import('types').SSRState;
1212
* route: import('types').SSRRoute | import('types').SSRErrorPage;
13-
* prerender_default?: true | false | 'auto';
13+
* prerender_default?: import('types').PrerenderOption;
1414
* }} opts
1515
*/
1616
export function create_fetch({ event, options, state, route, prerender_default }) {

packages/kit/types/index.d.ts

+2
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,8 @@ import {
1919
import { SSRNodeLoader, SSRRoute, ValidatedConfig } from './internal.js';
2020
import { HttpError, Redirect } from '../src/runtime/control.js';
2121

22+
export { PrerenderOption } from './private.js';
23+
2224
export interface Adapter {
2325
name: string;
2426
adapt(builder: Builder): MaybePromise<void>;

0 commit comments

Comments
 (0)