@rspress-theme-anatole/shared 0.7.15 → 0.7.17
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/index.d.ts +8 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -758,7 +758,15 @@ export declare type SSGConfig = boolean | {
|
|
|
758
758
|
strict?: boolean;
|
|
759
759
|
};
|
|
760
760
|
|
|
761
|
+
export declare type AuthConfig = {
|
|
762
|
+
signInUrl: string;
|
|
763
|
+
}
|
|
761
764
|
export declare interface UserConfig<ThemeConfig = DefaultThemeConfig> {
|
|
765
|
+
/**
|
|
766
|
+
* Auth config for application
|
|
767
|
+
* @default ''
|
|
768
|
+
*/
|
|
769
|
+
auth?: AuthConfig;
|
|
762
770
|
/**
|
|
763
771
|
* The email to receive requests.
|
|
764
772
|
* @default ''
|