File tree 2 files changed +12
-12
lines changed 2 files changed +12
-12
lines changed Original file line number Diff line number Diff line change @@ -1088,31 +1088,31 @@ export interface AfterNavigate extends Omit<Navigation, 'type'> {
1088
1088
}
1089
1089
1090
1090
/**
1091
- * The shape of the `$ page` store
1091
+ * The shape of the [`page`](https://svelte.dev/docs/kit/$app-state# page) reactive object and the [`$page`](https://svelte.dev/docs/kit/$app-stores) store.
1092
1092
*/
1093
1093
export interface Page <
1094
1094
Params extends Record < string , string > = Record < string , string > ,
1095
1095
RouteId extends string | null = string | null
1096
1096
> {
1097
1097
/**
1098
- * The URL of the current page
1098
+ * The URL of the current page.
1099
1099
*/
1100
1100
url : URL ;
1101
1101
/**
1102
- * The parameters of the current page - e.g. for a route like `/blog/[slug]`, a `{ slug: string }` object
1102
+ * The parameters of the current page - e.g. for a route like `/blog/[slug]`, a `{ slug: string }` object.
1103
1103
*/
1104
1104
params : Params ;
1105
1105
/**
1106
- * Info about the current route
1106
+ * Info about the current route.
1107
1107
*/
1108
1108
route : {
1109
1109
/**
1110
- * The ID of the current route - e.g. for `src/routes/blog/[slug]`, it would be `/blog/[slug]`
1110
+ * The ID of the current route - e.g. for `src/routes/blog/[slug]`, it would be `/blog/[slug]`.
1111
1111
*/
1112
1112
id : RouteId ;
1113
1113
} ;
1114
1114
/**
1115
- * Http status code of the current page
1115
+ * HTTP status code of the current page.
1116
1116
*/
1117
1117
status : number ;
1118
1118
/**
Original file line number Diff line number Diff line change @@ -1070,31 +1070,31 @@ declare module '@sveltejs/kit' {
1070
1070
}
1071
1071
1072
1072
/**
1073
- * The shape of the `$ page` store
1073
+ * The shape of the [`page`](https://svelte.dev/docs/kit/$app-state# page) reactive object and the [`$page`](https://svelte.dev/docs/kit/$app-stores) store.
1074
1074
*/
1075
1075
export interface Page <
1076
1076
Params extends Record < string , string > = Record < string , string > ,
1077
1077
RouteId extends string | null = string | null
1078
1078
> {
1079
1079
/**
1080
- * The URL of the current page
1080
+ * The URL of the current page.
1081
1081
*/
1082
1082
url : URL ;
1083
1083
/**
1084
- * The parameters of the current page - e.g. for a route like `/blog/[slug]`, a `{ slug: string }` object
1084
+ * The parameters of the current page - e.g. for a route like `/blog/[slug]`, a `{ slug: string }` object.
1085
1085
*/
1086
1086
params : Params ;
1087
1087
/**
1088
- * Info about the current route
1088
+ * Info about the current route.
1089
1089
*/
1090
1090
route : {
1091
1091
/**
1092
- * The ID of the current route - e.g. for `src/routes/blog/[slug]`, it would be `/blog/[slug]`
1092
+ * The ID of the current route - e.g. for `src/routes/blog/[slug]`, it would be `/blog/[slug]`.
1093
1093
*/
1094
1094
id : RouteId ;
1095
1095
} ;
1096
1096
/**
1097
- * Http status code of the current page
1097
+ * HTTP status code of the current page.
1098
1098
*/
1099
1099
status : number ;
1100
1100
/**
You can’t perform that action at this time.
0 commit comments