UNPKG

@modyo/cli

Version:

Modyo CLI Command line to expose local development tools

12 lines (11 loc) 353 B
/// <reference types="node" /> /// <reference types="node" /> /// <reference types="cheerio" /> interface RootContext { readonly indexPath: string; readonly buildDirectoryPath: string; readonly indexString: Buffer; readonly $: cheerio.Root; } export default function extractRoot(buildDirectory: string): Promise<RootContext>; export {};