mirror of
https://github.com/slint-ui/slint.git
synced 2025-09-30 13:51:13 +00:00
13 lines
622 B
Text
13 lines
622 B
Text
// 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
|
|
|
|
export * from "../../typeloader/incpath/local_helper_type.slint";
|
|
//^warning{'SomeRect' is already exported in this file; it will not be re-exported}
|
|
|
|
export * from "../../typeloader/incpath/dependency_from_incpath.slint";
|
|
// ^error{re-exporting modules is only allowed once per file}
|
|
export * from "../../typeloader/incpath/dependency_from_incpath.slint";
|
|
// ^error{re-exporting modules is only allowed once per file}
|
|
|
|
|
|
export SomeRect := Rectangle {}
|