Files
OwlBoard-TS/src/index.ts
Fred Boniface 50c2e5f427
All checks were successful
Publish Package / build-and-publish (push) Successful in 11s
Ensure that the ApiErrorCode type is exported
2026-04-28 17:52:45 +01:00

12 lines
473 B
TypeScript

export { OwlBoardClient } from './lib/client.js';
export { ValidationError, ApiError, type ApiErrorCode } from './lib/errors.js';
// Re-export API Schema types
export type * from '@owlboard/api-schema-types'
// Useful exports for Type Hinting
export { PisModule } from './modules/pis.js';
export { LocationFilterModule } from './modules/locationFilter.js';
export { StationDataModule } from './modules/stationData.js';
export { TrainsModule } from './modules/trains.js';