Skip to content

Commit

Permalink
Update types.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
SergeAstapov committed Oct 16, 2023
1 parent dfc5e77 commit 7bfe034
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions packages/ember-svg-jar/addon/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,12 @@ type SvgJarAssetId = string;
type SvgJarPositional = [SvgJarAssetId];

interface SvgJarAttrs {
width?: string;
height?: string;
class?: string;
role?: string;
title?: string;
desc?: string;
width?: string | null;
height?: string | null;
class?: string | null;
role?: string | null;
title?: string | null;
desc?: string | null;
}

type SvgJarReturn = SVGElement;
Expand Down

0 comments on commit 7bfe034

Please sign in to comment.