interface FormSpec { isEducationalQft: boolean; isGovermantServiceHtr: boolean; isOperatingExp: boolean; isMinPeriodOfTenure: boolean; isHaveSpecificQft: boolean; isHaveProLicense: boolean; isHaveMinPeriodOrHoldPos: boolean; } interface FormCommand { commanderFullname: string; commanderPosition: string; commanderAboveFullname: string; commanderAbovePosition: string; } interface FormCommandRef { commanderFullname: object | null; commanderPosition: object | null; commanderAboveFullname: object | null; commanderAbovePosition: object | null; [key: string]: any; } export type { FormCommand, FormCommandRef, FormSpec };