renovate
Version:
Automated dependency updates. Flexible so you don't need to be.
9 lines (8 loc) • 411 B
TypeScript
import type { AllConfig } from '../../config/types';
import type { PlatformId } from '../../constants';
import type { Platform } from './types';
export type * from './types';
export declare const getPlatformList: () => string[];
export declare const platform: Platform;
export declare function setPlatformApi(name: PlatformId): void;
export declare function initPlatform(config: AllConfig): Promise<AllConfig>;