Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fixing type in typescript types to refer to the correct css properties
  • Loading branch information
nclemeur authored Jul 4, 2023
1 parent f9d7b97 commit 9e71f0a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/split-grid/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ declare module 'split-grid' {

export type Direction = 'row' | 'column';

export type GridTemplateProperty = 'grid-template-column' | 'grid-template-row';
export type GridTemplateProperty = 'grid-template-columns' | 'grid-template-rows';

export default function Split(options: SplitOptions): SplitInstance;
}

0 comments on commit 9e71f0a

Please sign in to comment.