handoff-app
Version:
Automated documentation toolchain for building client side documentation from figma
19 lines (18 loc) • 434 B
TypeScript
import Handoff from '.';
/**
* Build the next js application
* @param handoff
* @returns
*/
declare const buildApp: (handoff: Handoff) => Promise<void>;
/**
* Watch the next js application
* @param handoff
*/
export declare const watchApp: (handoff: Handoff) => Promise<void>;
/**
* Watch the next js application
* @param handoff
*/
export declare const devApp: (handoff: Handoff) => Promise<void>;
export default buildApp;