Skip to content

Commit

Permalink
fix(types): fixing transform group types
Browse files Browse the repository at this point in the history
  • Loading branch information
dbanksdesign committed Nov 4, 2021
1 parent 54332b3 commit fcd85fe
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
3 changes: 1 addition & 2 deletions types/TransformGroup.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,5 @@
*/

export interface TransformGroup {
name: string;
transforms: string[];
transforms: Array<string>;
}
2 changes: 1 addition & 1 deletion types/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ declare namespace StyleDictionary {
options: Config;

transform: Record<string, Transform>;
transformGroup: Record<string, TransformGroup>;
transformGroup: Record<string, TransformGroup['transforms']>;
format: Record<string, Format>;
action: Record<string, Action>;
filter: Record<string, Filter>;
Expand Down

0 comments on commit fcd85fe

Please sign in to comment.