mirror of
https://github.com/renovatebot/renovate.git
synced 2025-01-12 22:29:06 +00:00
9 lines
330 B
TypeScript
9 lines
330 B
TypeScript
import type { ManagerApi } from '../types';
|
|
import customManagers from './api';
|
|
|
|
export const customManagerList = Array.from(customManagers.keys());
|
|
export const getCustomManagers = (): Map<string, ManagerApi> => customManagers;
|
|
|
|
export function isCustomManager(manager: string): boolean {
|
|
return customManagers.has(manager);
|
|
}
|