mirror of
https://github.com/ad1217/PrinterStatus
synced 2024-11-13 03:53:29 -05:00
7 lines
141 B
TypeScript
7 lines
141 B
TypeScript
import { Message } from './octoprint';
|
|
|
|
export type ExtendedMessage = (Message | { init?: null }) & {
|
|
printer: string;
|
|
name?: string;
|
|
};
|