12 lines
356 B
TypeScript
12 lines
356 B
TypeScript
/**
|
|
* Driver Management Module
|
|
*
|
|
* Exports all driver detection and installation functionality.
|
|
*/
|
|
|
|
export { BaseDriver, type IDriverInstallOptions } from './base-driver.ts';
|
|
export { NvidiaDriver } from './nvidia.ts';
|
|
export { AmdDriver } from './amd.ts';
|
|
export { IntelDriver } from './intel.ts';
|
|
export { DriverManager } from './driver-manager.ts';
|