12 lines
256 B
TypeScript
12 lines
256 B
TypeScript
|
// Export web components
|
||
|
export * from './taskbuffer-dashboard.js';
|
||
|
|
||
|
// Export types from main module for web usage
|
||
|
export type {
|
||
|
TaskManager,
|
||
|
Task,
|
||
|
ITaskMetadata,
|
||
|
ITaskExecutionReport,
|
||
|
IScheduledTaskInfo,
|
||
|
ITaskStep
|
||
|
} from '../ts/index.js';
|