7 lines
146 B
TypeScript
7 lines
146 B
TypeScript
export type LshwDisplay = {
|
|
product: string | null;
|
|
vendor: string | null;
|
|
capabilities: Array<string>;
|
|
driver: string | null;
|
|
};
|