@hhgtech/hhg-components
Version:
Hello Health Group common components
19 lines (18 loc) • 356 B
TypeScript
export type HealthTool = {
id: number;
title: string;
subtitle: string;
icon: string;
link: string;
isSubot: boolean;
template: string;
};
export type HealthToolApi = {
id: number;
title: string;
icon: string;
link: string;
subtitle: string;
is_subot: boolean;
template: string;
};