PNG  IHDR;IDATxܻn0K )(pA 7LeG{ §㻢|ذaÆ 6lذaÆ 6lذaÆ 6lom$^yذag5bÆ 6lذaÆ 6lذa{ 6lذaÆ `}HFkm,mӪôô! x|'ܢ˟;E:9&ᶒ}{v]n&6 h_tڠ͵-ҫZ;Z$.Pkž)!o>}leQfJTu іچ\X=8Rن4`Vwl>nG^is"ms$ui?wbs[m6K4O.4%/bC%t Mז -lG6mrz2s%9s@-k9=)kB5\+͂Zsٲ Rn~GRC wIcIn7jJhۛNCS|j08yiHKֶۛkɈ+;SzL/F*\Ԕ#"5m2[S=gnaPeғL lذaÆ 6l^ḵaÆ 6lذaÆ 6lذa; _ذaÆ 6lذaÆ 6lذaÆ RIENDB` import {OrderedMap} from 'immutable'; import {SassList} from './list'; import {Value} from './index'; /** * Sass's [map type](https://sass-lang.com/documentation/values/maps). * * @category Custom Function */ export class SassMap extends Value { /** * Creates a new map. * * @param contents - The contents of the map. This is an immutable * [[OrderedMap]] from the [`immutable` package](https://immutable-js.com/). * Defaults to an empty map. */ constructor(contents?: OrderedMap); /** * Returns the contents of this map as an immutable [[OrderedMap]] from the * [`immutable` package](https://immutable-js.com/). */ get contents(): OrderedMap; /** * Returns the value associated with `key` in this map, or `undefined` if * `key` isn't in the map. * * This is a shorthand for `this.contents.get(key)`, although it may be more * efficient in some cases. */ get(key: Value): Value | undefined; /** Inherited from [[Value.get]]. */ get(index: number): SassList | undefined; /** @hidden */ tryMap(): SassMap; }