Sylvain Filoni
update gradio client
9ada4bc
raw
history blame
307 Bytes
/**
* Separator object
* Used to space/separate choices group
*/
export declare class Separator {
readonly separator: string;
readonly type = "separator";
constructor(separator?: string);
static isSeparator(choice: undefined | Separator | Record<string, unknown>): choice is Separator;
}