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:
FloVanGH 2024-09-30 10:49:35 +02:00 committed by GitHub
parent a2ded25914
commit 25ae55b5dd
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
30 changed files with 528 additions and 450 deletions

View 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::*;