refactor(types): remove unused types

This commit is contained in:
syy11cn 2022-05-29 11:35:58 +08:00
parent 7df26af941
commit 04b51f03cb
3 changed files with 23 additions and 57 deletions

View File

@ -1,18 +1,25 @@
import type { IParagraphStyleOptions } from 'docx'
import type { IStylesOptions } from 'docx'
// Normal paragraphs.
export type ThemeKey = 'normal' |
// Heading.
'h1' | 'h2' | 'h3' | 'h4' | 'h5' | 'h6' | 'h7' | 'h8' | 'h9' |
// Table header and imageFooter.
'tableHeader' | 'imageFooter' |
// Title, subtitle, and cover info.
'title' | 'subtitle' | 'coverInfo' |
// Content and abstract.
'contentTitle' | 'abstractTitle' | 'keywords' |
// Code, mark.
'code' | 'mark'
export interface IMarkdownReportConfig {
/**
* Creator of the document.
*/
creator: string
/**
* Global style options.
*/
styles: IStylesOptions
export interface ThemeConfig extends IParagraphStyleOptions {
id: ThemeKey
}
export enum StyleName {
'normal' = 'normal',
'h1' = 'heading1',
'h2' = 'heading2',
'h3' = 'heading3',
'h4' = 'heading4',
'h5' = 'heading5',
'h6' = 'heading6',
'table' = 'table',
}

View File

@ -1,2 +1 @@
export * from './types'
export * from './config'
export { IMarkdownReportConfig, StyleName } from './config'

View File

@ -1,40 +0,0 @@
import type { IRunOptions } from 'docx'
export interface ReportConfig{
title: string
logo?: string
subtitle?: string
subtitlePos?: 'up' | 'down'
coverInfo?: Record<string, any>
disablePageNumber?: boolean
disablePageHeader?: boolean
}
export interface ReportMarkdown{
raw: string
frontmatter: ReportConfig
content: ReportMarkdownSection[]
}
export type MarkdownItTokenType = 'strong_open' | 'em_open' | 's_open' | 'mark_open' | 'html_inline' | 'text' | 'code_inline'
export interface ContentBase{
type: string
children?: ContentBase[]
}
export interface ReportMarkdownSection extends ContentBase {
type: 'section'
children: ReportMarkdownParagraph[]
}
export interface ReportMarkdownParagraph extends ContentBase{
type: 'paragraph' | 'heading'
children: ReportMarkdownParagraphChild[]
level?: number
}
export interface ReportMarkdownParagraphChild extends ContentBase{
type: 'text' | 'image'
config: IRunOptions
}