Skip to content

Commit

Permalink
type: fix type defines of template
Browse files Browse the repository at this point in the history
  • Loading branch information
LolipopJ committed Sep 17, 2024
1 parent f5e660a commit d408a05
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/interfaces/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -42,12 +42,12 @@ export interface IConvertOptions {
* HTML rendering template. This option has no effect if `htmlText` is specified
* @defaultValue `default`
*/
htmlTemplate?: "default" | "words";
htmlTemplate?: string;
/**
* CSS rendering template. This option has no effect if `cssText` is specified
* @defaultValue `default`
*/
cssTemplate?: "default" | "empty" | "github" | "githubDark" | "words";
cssTemplate?: string;
/**
* Rendering color theme
* @defaultValue `light`
Expand Down

0 comments on commit d408a05

Please sign in to comment.