Files
Khafid Prayoga 51725d7f73 feat(patient): doc preview, integration to select ethnic and lang (#229)
* impl: opts for ethnic and lang

* fix: doc related for preview

fix: upload dokumen kk dan ktp

fix dokumen preview

fix: add preview doc on edit form
2025-12-12 16:12:24 +07:00

15 lines
219 B
TypeScript

import { type Base, genBase } from './_base'
export interface Ethnic extends Base {
code: string
name: string
}
export function genEthnic(): Ethnic {
return {
...genBase(),
code: '',
name: '',
}
}