dart-sass/lib/src/ast/selector.dart

19 lines
619 B
Dart
Raw Normal View History

// Copyright 2016 Google Inc. Use of this source code is governed by an
// MIT-style license that can be found in the LICENSE file or at
// https://opensource.org/licenses/MIT.
export 'selector/attribute.dart';
export 'selector/class.dart';
export 'selector/complex.dart';
export 'selector/compound.dart';
export 'selector/id.dart';
export 'selector/list.dart';
export 'selector/namespaced_identifier.dart';
export 'selector/placeholder.dart';
export 'selector/pseudo.dart';
2016-08-04 23:19:35 +02:00
export 'selector/simple.dart' hide baseSpecificity;
export 'selector/type.dart';
export 'selector/universal.dart';
abstract class Selector {}