18 lines
393 B
TypeScript
18 lines
393 B
TypeScript
|
|
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 };
|