Skip to content

Commit

Permalink
update assets
Browse files Browse the repository at this point in the history
  • Loading branch information
ahaoboy committed Oct 18, 2024
1 parent fad6d0b commit 378204c
Show file tree
Hide file tree
Showing 5 changed files with 1,790 additions and 42 deletions.
8 changes: 6 additions & 2 deletions ansi2-wasm/src-ts/wasm/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,18 +6,22 @@
* @param {number | undefined} [width]
* @param {string | undefined} [font]
* @param {Mode | undefined} [mode]
* @param {string | undefined} [light_bg]
* @param {string | undefined} [dark_bg]
* @returns {string}
*/
export function to_svg(s: string, theme: Theme, width?: number, font?: string, mode?: Mode): string;
export function to_svg(s: string, theme: Theme, width?: number, font?: string, mode?: Mode, light_bg?: string, dark_bg?: string): string;
/**
* @param {string} s
* @param {Theme} theme
* @param {number | undefined} [width]
* @param {string | undefined} [font]
* @param {Mode | undefined} [mode]
* @param {string | undefined} [light_bg]
* @param {string | undefined} [dark_bg]
* @returns {string}
*/
export function to_html(s: string, theme: Theme, width?: number, font?: string, mode?: Mode): string;
export function to_html(s: string, theme: Theme, width?: number, font?: string, mode?: Mode, light_bg?: string, dark_bg?: string): string;
/**
* @param {string} s
* @param {number | undefined} [width]
Expand Down
100 changes: 62 additions & 38 deletions ansi2-wasm/src-ts/wasm/index.js

Large diffs are not rendered by default.

Loading

0 comments on commit 378204c

Please sign in to comment.