mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-04-25 06:14:59 +00:00
14 lines
410 B
JavaScript
14 lines
410 B
JavaScript
/**
|
|
* Shared Interfaces
|
|
*
|
|
* Service contracts and request/response interfaces used across MetaBuilder.
|
|
*
|
|
* Usage:
|
|
* import type { CreateProjectRequest } from '@metabuilder/interfaces';
|
|
*/
|
|
// Request/Response interfaces
|
|
export * from './requests';
|
|
// Re-export types for convenience (types are data shapes, interfaces are contracts)
|
|
export * from '../types/workflow';
|
|
export * from '../types/project';
|