15 lines
307 B
TypeScript
15 lines
307 B
TypeScript
interface ObjectGroupRef {
|
|
posTypeName: object | null;
|
|
posTypeShortName: object | null;
|
|
posTypeRank: object | null;
|
|
[key: string]: any;
|
|
}
|
|
|
|
interface ObjectLevelRef {
|
|
posLevelName: object | null;
|
|
commander: object | null;
|
|
|
|
[key: string]: any;
|
|
}
|
|
|
|
export type { ObjectGroupRef, ObjectLevelRef };
|