It also shows how to add a new command category (ParcelCommands) Everything under dist/ is auto-generated with "npm run build".
7 lines
267 B
TypeScript
7 lines
267 B
TypeScript
import { CommandsBase } from './CommandsBase';
|
|
import { UUID } from '../UUID';
|
|
import { ParcelInfoReplyEvent } from '../..';
|
|
export declare class ParcelCommands extends CommandsBase {
|
|
getParcelInfo(parcelID: UUID | string): Promise<ParcelInfoReplyEvent>;
|
|
}
|