valaxy 0.7.2 → 0.7.5

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.
@@ -1,16 +0,0 @@
1
- import * as type_fest_source_partial_deep from 'type-fest/source/partial-deep';
2
- import { U as UserConfig, a as ValaxyConfig } from './index-afca77df.js';
3
- import * as valaxy_theme_yun from 'valaxy-theme-yun';
4
- import { YunTheme } from 'valaxy-theme-yun';
5
-
6
- declare const EXTERNAL_URL_RE: RegExp;
7
- /**
8
- * Type config helper
9
- */
10
- declare function defineConfig(config: UserConfig<YunTheme.Config>): type_fest_source_partial_deep.PartialObjectDeep<ValaxyConfig<valaxy_theme_yun.ThemeConfig>>;
11
- /**
12
- * Type config helper for custom theme config
13
- */
14
- declare function defineConfigWithTheme<ThemeConfig>(config: UserConfig<ThemeConfig>): type_fest_source_partial_deep.PartialObjectDeep<ValaxyConfig<ThemeConfig>>;
15
-
16
- export { EXTERNAL_URL_RE as E, defineConfigWithTheme as a, defineConfig as d };
package/shared/index.ts DELETED
@@ -1,20 +0,0 @@
1
- import type { YunTheme } from 'valaxy-theme-yun'
2
- import type { UserConfig } from '../types'
3
-
4
- export const EXTERNAL_URL_RE = /^https?:/i
5
-
6
- /**
7
- * Type config helper
8
- */
9
- export function defineConfig(config: UserConfig<YunTheme.Config>) {
10
- return config
11
- }
12
-
13
- /**
14
- * Type config helper for custom theme config
15
- */
16
- export function defineConfigWithTheme<ThemeConfig>(
17
- config: UserConfig<ThemeConfig>,
18
- ) {
19
- return config
20
- }