UNPKG

dbus-sdk

Version:

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

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