Skip to main content

TypeAlias.CreateImportMapper

type CreateImportMapper = {
application: string;
name: string;
rows: {
destination: string;
source: string;
type: "path" | "const";
}[];
};

Body shape for creating an import mapper.

Type Declaration

NameType
applicationstring
namestring
rows{ destination: string; source: string; type: "path"