fumadocs-core 13.4.9 → 13.4.10
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/source/index.d.ts +6 -6
- package/package.json +1 -1
package/dist/source/index.d.ts
CHANGED
|
@@ -140,14 +140,14 @@ declare function loader<Options extends LoaderOptions>(options: Options): Loader
|
|
|
140
140
|
}>;
|
|
141
141
|
|
|
142
142
|
interface MetaData {
|
|
143
|
-
icon?: string;
|
|
144
|
-
title?: string;
|
|
145
|
-
root?: boolean;
|
|
146
|
-
pages?: string[];
|
|
147
|
-
defaultOpen?: boolean;
|
|
143
|
+
icon?: string | undefined;
|
|
144
|
+
title?: string | undefined;
|
|
145
|
+
root?: boolean | undefined;
|
|
146
|
+
pages?: string[] | undefined;
|
|
147
|
+
defaultOpen?: boolean | undefined;
|
|
148
148
|
}
|
|
149
149
|
interface PageData {
|
|
150
|
-
icon?: string;
|
|
150
|
+
icon?: string | undefined;
|
|
151
151
|
title: string;
|
|
152
152
|
}
|
|
153
153
|
type InferPageType<Utils extends LoaderOutput<any>> = Utils extends LoaderOutput<infer Config> ? Page<Config['source']['pageData']> : never;
|