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 {List} from 'immutable'; import {Value} from './index'; /** * Possible separators used by Sass lists. The special separator `null` is only * used for lists with fewer than two elements, and indicates that the separator * has not yet been decided for this list. * * @category Custom Function */ export type ListSeparator = ',' | '/' | ' ' | null; /** * Sass's [list type](https://sass-lang.com/documentation/values/lists). * * @category Custom Function */ export class SassList extends Value { /** * Creates a new list. * * @param contents - The contents of the list. This may be either a plain * JavaScript array or an immutable [[List]] from the [`immutable` * package](https://immutable-js.com/). * * @param options.separator - The separator to use between elements of this * list. Defaults to `','`. * * @param options.brackets - Whether the list has square brackets. Defaults to * `false`. */ constructor( contents: Value[] | List, options?: { separator?: ListSeparator; brackets?: boolean; } ); /** * Creates an empty list. * * @param options.separator - The separator to use between elements of this * list. Defaults to `','`. * * @param options.brackets - Whether the list has square brackets. Defaults to * `false`. */ constructor(options?: {separator?: ListSeparator; brackets?: boolean}); /** @hidden */ get separator(): ListSeparator; }