12 lines
263 B
TypeScript
12 lines
263 B
TypeScript
|
|
export default interface IMediaQueryRange {
|
||
|
|
before: {
|
||
|
|
value: string;
|
||
|
|
operator: string;
|
||
|
|
} | null;
|
||
|
|
type: string;
|
||
|
|
after: {
|
||
|
|
value: string;
|
||
|
|
operator: string;
|
||
|
|
} | null;
|
||
|
|
}
|
||
|
|
//# sourceMappingURL=IMediaQueryRange.d.ts.map
|