27 lines
657 B
TypeScript
27 lines
657 B
TypeScript
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 };
|