hrms-user/src/modules/06_evaluate/interface/evalute.ts

18 lines
393 B
TypeScript
Raw Normal View History

interface FormCommand {
elementaryFullName: string;
elementaryPosition: string;
abovelevelFullname: string;
abovelevelPosition: string;
}
interface FormCommandRef {
elementaryFullName: object | null;
elementaryPosition: object | null;
abovelevelFullname: object | null;
abovelevelPosition: object | null;
[key: string]: any;
}
export type { FormCommand, FormCommandRef };