- Changed Exports.swift to use regular imports instead of @_exported - This prevents ambiguous macro resolution issues in consuming apps
12 lines
247 B
Swift
12 lines
247 B
Swift
//
|
|
// Exports.swift
|
|
// Bedrock
|
|
//
|
|
// Common imports for Bedrock.
|
|
//
|
|
|
|
// Note: We import but don't re-export SwiftUI/Foundation to avoid
|
|
// ambiguity issues with macros like #Preview when apps also import these.
|
|
import SwiftUI
|
|
import Foundation
|