openclaw
Version:
Multi-channel AI gateway with extensible messaging integrations
8 lines (7 loc) • 348 B
TypeScript
export declare function wrapNoteMessage(message: unknown, options?: {
maxWidth?: number;
columns?: number;
}): string;
export declare function resolveNoteColumns(columns: number | undefined): number;
export declare function note(message: unknown, title?: string): void;
export declare function withSuppressedNotes<T>(callback: () => T): T;