diff --git a/src/responsive.ts b/src/responsive.ts new file mode 100644 index 0000000..e89fe41 --- /dev/null +++ b/src/responsive.ts @@ -0,0 +1,14 @@ + +export default class Responsive +{ + maxWidth: number; + minWidth: number; + margin: number; + + constructor(maxWidth: number, minWidth: number, margin: number) + { + this.maxWidth = maxWidth; + this.minWidth = minWidth; + this.margin = margin; + } +}