4 lines
124 B
TypeScript
Executable file
4 lines
124 B
TypeScript
Executable file
export type Manifest = Record<string, string>;
|
|
export interface ManifestLoader {
|
|
load(name: string): Manifest | null;
|
|
}
|