Skip to content

Commit

Permalink
initialize-recursive
Browse files Browse the repository at this point in the history
  • Loading branch information
Kinatzo committed Aug 30, 2024
1 parent b208a04 commit f9f08ae
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -93,9 +93,9 @@ export function abstractDocOfXml(

export function extractImageFontsStyleNames(
xmlElement: ReadonlyArray<XmlElement>,
styleNames: Record<string, string>,
images: Array<{ readonly src: string; readonly width: number | undefined; readonly height: number | undefined }>,
fonts: Array<string>
styleNames: Record<string, string> = {},
images: Array<{ readonly src: string; readonly width: number | undefined; readonly height: number | undefined }> = [],
fonts: Array<string> = []
): readonly [
images: ReadonlyArray<{
readonly src: string;
Expand Down

0 comments on commit f9f08ae

Please sign in to comment.