@@ -109,10 +109,7 @@ export type TemplateActionOptions<
|
||||
> = {
|
||||
id: string;
|
||||
description?: string;
|
||||
examples?: {
|
||||
description: string;
|
||||
example: string;
|
||||
}[];
|
||||
examples?: TemplateExample[];
|
||||
supportsDryRun?: boolean;
|
||||
schema?: {
|
||||
input?: TInputSchema;
|
||||
@@ -120,4 +117,10 @@ export type TemplateActionOptions<
|
||||
};
|
||||
handler: (ctx: ActionContext<TActionInput, TActionOutput>) => Promise<void>;
|
||||
};
|
||||
|
||||
// @public (undocumented)
|
||||
export type TemplateExample = {
|
||||
description: string;
|
||||
example: string;
|
||||
};
|
||||
```
|
||||
|
||||
Reference in New Issue
Block a user