@pnp/cli-microsoft365
Version:
Manage Microsoft 365 and SharePoint Framework projects on any platform
14 lines (12 loc) • 311 B
TypeScript
export interface CommandOutput {
error?: {
message: string;
code?: number;
}
stdout: string;
stderr: string;
}
export declare function executeCommand(commandName: string, options: any, listener?: {
stdout: (message: any) => void,
stderr: (message: any) => void,
}): Promise<CommandOutput>;