UNPKG

@kiwicom/orbit-tracking

Version:

Tracking for orbit design system

18 lines (15 loc) 485 B
import { S as Scope } from './interfaces-974f9e53.js'; interface BaseArgs { outputPath: string; config: string; folder?: string; } interface Args extends BaseArgs { scope: Scope[]; } interface ApiCallArgs extends BaseArgs { ids: string[]; } declare const gitlabApiCall: ({ ids, folder, outputPath, config }: ApiCallArgs) => Promise<null>; declare function fetcher({ scope, outputPath, config }: Args): Promise<void>; export { fetcher as default, gitlabApiCall };