UNPKG

handoff-app

Version:

Automated documentation toolchain for building client side documentation from figma

23 lines (22 loc) 685 B
import 'dotenv/config'; import { Types as HandoffTypes } from 'handoff-core'; import * as stream from 'node:stream'; import Handoff from '.'; /** * Read Previous Json File * @param path * @returns */ export declare const readPrevJSONFile: (path: string) => Promise<any>; export declare const zipAssets: (assets: HandoffTypes.IAssetObject[], destination: stream.Writable) => Promise<stream.Writable>; /** * Build previews * @param documentationObject * @returns */ export declare const buildComponents: (handoff: Handoff) => Promise<void>; /** * Run the entire pipeline */ declare const pipeline: (handoff: Handoff, build?: boolean) => Promise<void>; export default pipeline;