export type PathWithVersion = {
    [path: string]: string;
};
export type ManifestPlugin = {
    [key: string]: {
        path: string;
        method: string;
    };
};
