6 lines
135 B
TypeScript
6 lines
135 B
TypeScript
import type { ImageId } from './ImageId';
|
|
export type CreateSubcontainerFsParams = {
|
|
imageId: ImageId;
|
|
name: string | null;
|
|
};
|