Home > vm-providers > VMFactory
The virtual machine factory provided by each virtual machine provider. It is a function that takes the configuration and asynchronously returns an object that implements the VM interface.
Signature:
export declare type VMFactory<T> = (config: VMConfig<T>) => Promise<VM>;