type FixFuncType = (x?: any) => Promise<boolean>

export abstract class ManipulatorInterfaceType {
    folder?: FixFuncType
    file?: FixFuncType
}
