-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.ts
More file actions
21 lines (18 loc) · 704 Bytes
/
index.ts
File metadata and controls
21 lines (18 loc) · 704 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/**
* @module Effect/Sandbox
* @description
* Main re-export module for Sandbox service.
* Provides all exports for backward compatibility with existing imports.
*
* @see {@link Effect/Sandbox/Interface/SandboxService} Service interface
* @see {@link Effect/Sandbox/Layer/SandboxLive} Live layer
* @see {@link Effect/Sandbox/Layer/SandboxMock} Mock layer
* @category Re-export
*/
// Service interface
export type { SandboxService } from "./Interface/SandboxService.js";
// Tag
export { Sandbox, default as SandboxTag } from "./Tag/SandboxTag.js";
// Layers
export { default as SandboxLive } from "./Layer/SandboxLive.js";
export { default as SandboxMockLive } from "./Layer/SandboxMock.js";