f20519c0fac953f867d12c3ab75ad995df63be7e1ea38c620a9b8fbbfd7eba58bcbc769bf934c8f1ff0f9c7c483e650b84bd2947b66179c9a6263d9888bd34 342 B

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