visible/visible

View on GitHub
packages/@visi/core/src/driver/driver-factory.ts

Summary

Maintainability
A
0 mins
Test Coverage
import { Settings } from '../settings';
import { Driver } from './driver';

export interface DriverFactory {
  create(): Promise<Driver>;
}

export interface DriverFactoryConstructor {
  new (settings: Settings): DriverFactory;
}