refactor(content-docs): move isCategoriesShorthand to utils (#5962)

This commit is contained in:
Armano 2021-11-18 01:25:07 +01:00 committed by GitHub
parent ac1df888ae
commit 2f7d6fea1e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
18 changed files with 39 additions and 29 deletions

View file

@ -6,7 +6,7 @@
*/
import {Joi, URISchema} from '@docusaurus/utils-validation';
import {
import type {
SidebarItemConfig,
SidebarCategoriesShorthand,
SidebarItemBase,
@ -15,8 +15,8 @@ import {
SidebarItemLink,
SidebarItemCategoryConfig,
SidebarsConfig,
isCategoriesShorthand,
} from './types';
import {isCategoriesShorthand} from './utils';
const sidebarItemBaseSchema = Joi.object<SidebarItemBase>({
className: Joi.string(),