export type ReplaceContentOption = {
    list?: Array<[string, string]>;
    from?: string;
    to?: string;
    dirList: string | string[];
};
export type ReplaceContentSimpleOption = {
    list?: Array<[string | RegExp, string]>;
    from?: string | RegExp;
    to?: string;
    dirList: string | string[];
};
