mirror of
https://github.com/ad1217/PrinterStatus
synced 2024-11-11 02:55:09 -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;
|
|
};
|