mirror of
https://git.coastit.co.za/caitlin/CRM_ENVR.git
synced 2026-07-10 11:15:43 +02:00
17 lines
484 B
TypeScript
17 lines
484 B
TypeScript
// ── Generic Data Module Template ─────────────────────────────────────
|
|
// Auto-generated by self-healing setup.
|
|
// Placeholder for @/data/* imports. Customize as needed.
|
|
|
|
export interface DataItem {
|
|
id: string;
|
|
name: string;
|
|
[key: string]: unknown;
|
|
}
|
|
|
|
export function getDataItems(): DataItem[] {
|
|
return [];
|
|
}
|
|
|
|
export function getDataItem(id: string): DataItem | undefined {
|
|
return undefined;
|
|
} |