syncat_stylesheet/
lib.rs

1use tree_sitter::Language;
2
3mod ast;
4mod error;
5mod parser;
6pub mod resolver;
7mod style;
8mod stylesheet;
9
10pub use ast::Color;
11pub use error::{Error, ErrorKind, Result};
12pub use style::{FromValueError, Style, Value};
13use stylesheet::{Matches, QuerySlice};
14pub use stylesheet::{Query, Stylesheet};
15
16unsafe extern "C" {
17    fn tree_sitter_syncat_stylesheet() -> Language;
18}