mirror of
https://github.com/zhigang1992/DefinitelyTyped.git
synced 2026-05-13 12:37:16 +08:00
Make GridAutoValue responsive (#27827)
This commit is contained in:
committed by
Sheetal Nandi
parent
8e20fb6f88
commit
aff6b6dfeb
7
types/styled-system/index.d.ts
vendored
7
types/styled-system/index.d.ts
vendored
@@ -447,21 +447,22 @@ export interface GridRowProps {
|
||||
export function gridRow(...args: any[]): any;
|
||||
|
||||
export type GridAutoValue = string;
|
||||
export type ResponsiveGridAutoValue = ResponsiveValue<GridAutoValue>;
|
||||
|
||||
export interface GridAutoFlowProps {
|
||||
gridAutoFlow?: GridAutoValue;
|
||||
gridAutoFlow?: ResponsiveGridAutoValue;
|
||||
}
|
||||
|
||||
export function gridAutoFlow(...args: any[]): any;
|
||||
|
||||
export interface GridAutoRowsProps {
|
||||
gridAutoRows?: GridAutoValue;
|
||||
gridAutoRows?: ResponsiveGridAutoValue;
|
||||
}
|
||||
|
||||
export function gridAutoRows(...args: any[]): any;
|
||||
|
||||
export interface GridAutoColumnsProps {
|
||||
gridAutoColumns?: GridAutoValue;
|
||||
gridAutoColumns?: ResponsiveGridAutoValue;
|
||||
}
|
||||
|
||||
export function gridAutoColumns(...args: any[]): any;
|
||||
|
||||
Reference in New Issue
Block a user