UNPKG

s7-server

Version:
13 lines 695 B
/** * TypeScript S7 PLC Server Simulator * Main entry point */ export { S7Server } from './server/s7-server'; export { S7Protocol } from './protocol/s7-protocol'; export { ISOTCPProtocol } from './protocol/iso-tcp'; export { S7PDUParser } from './protocol/s7-pdu'; export { ConnectionManager } from './protocol/connection-manager'; export { MemoryManager } from './memory/memory-manager'; export * from './types/s7-types'; export { S7Area, S7WordLength, Operation, ServerStatus, CpuStatus, EventCode, EventResult, ServerParam, ServerError, S7Tag, S7ServerEvent, BufferInfo, ClientInfo, ServerConfig, RWAreaCallback, EventCallback } from './types/s7-types'; //# sourceMappingURL=index.d.ts.map