import type { MakeCase } from '../utils'; import type { Content, ContentSection, ContentPage, ContentBlog, ContentBlogCategory, } from './snake'; import type { ContentCamel, ContentSectionCamel, ContentPageCamel, ContentBlogCamel, ContentBlogCategoryCamel, } from './camel'; export type ContentCase = MakeCase; export type ContentSectionCase = MakeCase; export type ContentPageCase = MakeCase; export type ContentBlogCase = MakeCase; export type ContentBlogCategoryCase = MakeCase< ContentBlogCategory, ContentBlogCategoryCamel >; export type { Content, ContentSection, ContentPage, ContentBlog, ContentBlogCategory, ContentCamel, ContentSectionCamel, ContentPageCamel, ContentBlogCamel, ContentBlogCategoryCamel, };