5 lines
102 B
TypeScript
5 lines
102 B
TypeScript
import type { Manifest } from './Manifest';
|
|
export type InstalledState = {
|
|
manifest: Manifest;
|
|
};
|