8 lines
211 B
TypeScript
8 lines
211 B
TypeScript
import type { InstallingInfo } from './InstallingInfo';
|
|
import type { Manifest } from './Manifest';
|
|
export type UpdatingState = {
|
|
manifest: Manifest;
|
|
s9pk: string;
|
|
installingInfo: InstallingInfo;
|
|
};
|