5 lines
127 B
TypeScript
5 lines
127 B
TypeScript
import type { InstallingInfo } from './InstallingInfo';
|
|
export type InstallingState = {
|
|
installingInfo: InstallingInfo;
|
|
};
|