8 lines
193 B
TypeScript
8 lines
193 B
TypeScript
import type { ImageSource } from './ImageSource';
|
|
export type ImageConfig = {
|
|
source: ImageSource;
|
|
arch: string[];
|
|
emulateMissingAs: string | null;
|
|
nvidiaContainer: boolean;
|
|
};
|