UNPKG

dbus-sdk

Version:

A Node.js SDK for interacting with DBus, enabling seamless service calling and exposure with TypeScript support

18 lines 656 B
import { IntrospectSignalArgument } from './IntrospectSignalArgument'; /** * Interface defining the structure of introspection data for a DBus signal. * Used to describe a signal available on a DBus interface during introspection. */ export interface IntrospectSignal { /** * The name of the signal. * This is a string identifier for the signal (e.g., 'PropertiesChanged'). */ name: string; /** * An array of arguments for the signal. * Each argument contains metadata such as its name and type for introspection purposes. */ arg: IntrospectSignalArgument[]; } //# sourceMappingURL=IntrospectSignal.d.ts.map