mirror of
https://github.com/slint-ui/slint.git
synced 2025-11-01 12:24:16 +00:00
Improve source structure in the node api (#6164)
* Update api/node/typescript/models.ts Co-authored-by: Simon Hausmann <simon.hausmann@slint.dev> * Code review feedback --------- Co-authored-by: Simon Hausmann <simon.hausmann@slint.dev>
This commit is contained in:
parent
a2ded25914
commit
25ae55b5dd
30 changed files with 528 additions and 450 deletions
20
api/node/rust/interpreter.rs
Normal file
20
api/node/rust/interpreter.rs
Normal file
|
|
@ -0,0 +1,20 @@
|
|||
// Copyright © SixtyFPS GmbH <info@slint.dev>
|
||||
// SPDX-License-Identifier: GPL-3.0-only OR LicenseRef-Slint-Royalty-free-2.0 OR LicenseRef-Slint-Software-3.0
|
||||
|
||||
mod diagnostic;
|
||||
pub use diagnostic::*;
|
||||
|
||||
mod component_compiler;
|
||||
pub use component_compiler::*;
|
||||
|
||||
mod component_definition;
|
||||
pub use component_definition::*;
|
||||
|
||||
mod component_instance;
|
||||
pub use component_instance::*;
|
||||
|
||||
mod value;
|
||||
pub use value::*;
|
||||
|
||||
mod window;
|
||||
pub use window::*;
|
||||
Loading…
Add table
Add a link
Reference in a new issue