19 lines
345 B
TypeScript
19 lines
345 B
TypeScript
/**
|
|
* Mosaic Stack Gantt Plugin - Main exports
|
|
*/
|
|
|
|
export {
|
|
GanttClient,
|
|
createGanttClientFromEnv,
|
|
type GanttClientConfig,
|
|
type Project,
|
|
type Task,
|
|
type ProjectStatus,
|
|
type TaskStatus,
|
|
type TaskPriority,
|
|
type PaginatedResponse,
|
|
type ProjectTimeline,
|
|
type DependencyChain,
|
|
type CriticalPath,
|
|
} from './gantt-client.js';
|