| 10 | * A registry stores the content of packages |
| 11 | */ |
| 12 | export interface Registry { |
| 13 | getContent(fullSlug: PackageIdentifier): Promise<string>; |
| 14 | } |
| 15 | export type SecretNamesMap = Map<FQSN, string>; |
| 16 | |
| 17 | /** |
no outgoing calls
no test coverage detected