20 lines
301 B
Plaintext
20 lines
301 B
Plaintext
// types/analytics/insight.uts
|
|
|
|
export type InsightDetail = {
|
|
id: string
|
|
report_id: string
|
|
type: string
|
|
impact: string
|
|
title: string
|
|
content: string
|
|
created_at: string
|
|
}
|
|
|
|
export type RelatedReport = {
|
|
id: string
|
|
title: string
|
|
type: string
|
|
period: string
|
|
generated_at: string
|
|
}
|