UNPKG

dbus-sdk

Version:

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

6 lines 293 B
/** * Type definition for a method call function that operates in reply mode. * Used to represent a DBus method call that expects and returns a response from the server. */ export type ReplyModeMethodCall = (...args: any[]) => Promise<any>; //# sourceMappingURL=ReplyModeMethodCall.d.ts.map