mirror of
https://github.com/Tria-plc/emaui.git
synced 2026-08-27 15:30:57 +00:00
10 lines
246 B
TypeScript
10 lines
246 B
TypeScript
declare class RuleSetCompiler {
|
|
references: Map<string, any>;
|
|
/**
|
|
* builtin references that should be serializable and passed to Rust.
|
|
*/
|
|
builtinReferences: Map<string, any>;
|
|
constructor();
|
|
}
|
|
export { RuleSetCompiler };
|