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

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

export type { Shifts };
