@open-wa/wa-automate-types-only
Version:
Types generated from the @open-wa/wa-automate package
25 lines (24 loc) • 420 B
TypeScript
export interface Button {
id: string;
text: string;
}
export interface AdvancedButton {
id?: string;
text: string;
url?: string;
number?: string;
}
export interface Row {
title: string;
description: string;
rowId: string;
}
export interface Section {
title: string;
rows: Row[];
}
export interface LocationButtonBody {
lat: number;
lng: number;
caption: string;
}