import { PartMessage } from "../message/twitch-types/membership/part.mjs"; import { SingleConnection } from "../client/connection.mjs"; import { MessageError } from "../client/errors.mjs"; //#region src/operations/part.d.ts declare class PartError extends MessageError { failedChannelName: string; constructor(failedChannelName: string, message: string, cause?: Error); } declare function awaitPartResponse(conn: SingleConnection, channelName: string): Promise; declare function partNothingToDo(conn: SingleConnection, channelName: string): boolean; declare function partChannel(conn: SingleConnection, channelName: string): Promise; //#endregion export { PartError, awaitPartResponse, partChannel, partNothingToDo }; //# sourceMappingURL=part.d.mts.map