Files
interfaces/ts/data/index.ts

33 lines
703 B
TypeScript
Raw Normal View History

// Core types
export * from './types.js';
// Check interfaces (configuration + execution)
export * from './checks/index.js';
// Collections
2023-04-03 13:40:56 +02:00
export * from './checkcollection.js';
// Incidents
2022-07-16 17:45:10 +02:00
export * from './incident.js';
// Service status
export * from './servicestatus.js';
// Status page configuration
export * from './statuspageconfig.js';
// Domain and link snapshots
export * from './domainsnapshot.js';
2023-04-18 17:13:45 +02:00
export * from './linksnapshot.js';
// Property and search
2022-07-19 17:16:37 +02:00
export * from './property.js';
2023-04-03 13:40:56 +02:00
export * from './search.js';
// Status (90-day history)
2022-07-19 17:16:37 +02:00
export * from './status.js';
2023-04-03 14:41:09 +02:00
// Re-export checks namespace for convenience
2023-04-03 14:41:09 +02:00
import * as checks from './checks/index.js';
2023-04-17 13:48:32 +02:00
export { checks };