satupeta-main/shared/types/wilayah.ts
2026-01-27 09:31:12 +07:00

8 lines
124 B
TypeScript

export type Wilayah = {
id: number;
name: string;
kode?: string;
notes?: string | null;
image?: string | null;
};