koishi-plugin-dynamic-bot 0.0.3 → 0.0.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/lib/dbk/send.d.ts CHANGED
@@ -12,5 +12,5 @@ export interface SegmentRenderOptions {
12
12
  mentionAll?: boolean;
13
13
  }
14
14
  export declare function sendMessage(ctx: Context, request: SendParams): Promise<SendResult>;
15
- export declare function segmentsToElements(segments: Segment[], options?: SegmentRenderOptions): El[];
15
+ export declare function segmentsToElements(ctx: Context, segments: Segment[], options?: SegmentRenderOptions): Promise<El[]>;
16
16
  export {};