interface ResPosType { id: string; posTypeName: string; posTypeRank: number; posLevels: PosLevels[]; } interface PosLevels { id: string; posLevelAuthority: string; posLevelName: string; posLevelRank: number; } export type { ResPosType };