Add project files.

This commit is contained in:
2025-04-19 20:47:58 +03:00
parent 9e14d137ae
commit bfdcdb1f3b
66 changed files with 2394 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
namespace Beam.Exports {
public interface IStreamExporter : IAsyncExporter {
/// <summary>
/// Asynchronously writes the object to the desired path in many parts, returning the path
/// of each written file as a stream
/// </summary>
/// <param name="path">The path of the exported object</param>
/// <returns>The async enumerator of each written file</returns>
public IAsyncEnumerator<string> WriteAsyncStream(string path);
}
}