@uimkit/uikit-react
Version:
<img style="width:64px" src="https://mgmt.uimkit.chat/media/img/avatar.png"/>
25 lines (23 loc) • 665 B
TypeScript
type UnknownType = Record<string, unknown>;
type CustomTrigger = {
[key: string]: {
componentProps: UnknownType;
data: UnknownType;
};
};
type ChatConfigFields = {};
type CreatedAtUpdatedAt = {
created_at: string;
updated_at: string;
};
type CommandResponse = Partial<CreatedAtUpdatedAt> & {
args?: string;
description?: string;
name?: string;
set?: string;
};
type ChatConfigWithInfo = ChatConfigFields & CreatedAtUpdatedAt & {
commands?: CommandResponse[];
};
export { ChatConfigFields, ChatConfigWithInfo, CommandResponse, CreatedAtUpdatedAt, CustomTrigger, UnknownType };
//# sourceMappingURL=index.d.ts.map