mirror of
https://github.com/morten-olsen/mini-loader.git
synced 2026-02-08 01:36:26 +01:00
10 lines
372 B
TypeScript
10 lines
372 B
TypeScript
import type { LoggerEvent } from './logger/logger.js';
|
|
import type { ArtifactCreateEvent } from './artifacts/artifacts.js';
|
|
|
|
type Event = LoggerEvent | ArtifactCreateEvent;
|
|
|
|
export type { Event, LoggerEvent, ArtifactCreateEvent };
|
|
export { logger } from './logger/logger.js';
|
|
export { artifacts } from './artifacts/artifacts.js';
|
|
export { input } from './input/input.js';
|