oak-general-business/lib/data/area.d.ts

36 lines
612 B
TypeScript

declare const area: ({
code: string;
level: string;
parentId: null;
name: string;
depth: number;
id: string;
center: {
type: string;
coordinate: number[];
};
} | {
code: string;
level: string;
parentId: string;
name: string;
depth: number;
id: string;
center: {
type: string;
coordinate: number[];
};
} | {
code: number;
level: string;
parentId: string;
name: string;
depth: number;
id: number;
center: {
type: string;
coordinate: number[];
};
})[];
export { area, };