import { Parts } from './Parts.type.mjs';

type Shifts = {
    [Key in keyof Parts]: number;
};

export type { Shifts };
