UNPKG

342 BTypeScriptView Raw
1import {Value} from './index';
2
3/**
4 * Sass's [mixin type](https://sass-lang.com/documentation/values/mixins).
5 *
6 * @category Custom Function
7 */
8export class SassMixin extends Value {
9 /**
10 * It is not possible to construct a Sass mixin outside of Sass. Attempting to
11 * construct one will throw an exception.
12 */
13 constructor();
14}