mirror of https://github.com/renovatebot/renovate
10 lines
330 B
TypeScript
10 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);
|
|
}
|