Skip to main content

TypeAlias.UpdateImportMapper

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

Body shape for updating an import mapper.

Type Declaration

NameType
name?string
rows?{ destination: string; source: string; type: "path"