Skip to content

Commit

Permalink
chore(types): tweaks
Browse files Browse the repository at this point in the history
  • Loading branch information
ulivz committed Dec 23, 2021
1 parent ac78df2 commit 8c4b5bc
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 7 deletions.
2 changes: 1 addition & 1 deletion packages/@vuepress/types/lib/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import ChainWebpackConfig from "webpack-chain";
import { PostCssLoaderOptions } from "./style";
import { MarkdownConfig } from "./markdown";
import { LocaleConfig } from "./locale";
import { ThemeConfig } from "./default-theme";
import { ThemeConfig } from "./theme";
import { PluginTuple, PluginObject } from "./plugin";

/**
Expand Down
2 changes: 1 addition & 1 deletion packages/@vuepress/types/lib/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ export * from './locale'
export * from './markdown'
export * from './style'
export * from './context'
export * from './default-theme'
export * from './theme-default'
Original file line number Diff line number Diff line change
Expand Up @@ -255,8 +255,3 @@ export type DefaultThemeConfig = {
*/
selectText?: string;
};

/**
* Default theme config type
*/
export type ThemeConfig = any;
4 changes: 4 additions & 0 deletions packages/@vuepress/types/lib/theme.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
/**
* Default theme config type
*/
export type ThemeConfig = any;

0 comments on commit 8c4b5bc

Please sign in to comment.