@stencil/playwright
Version:
Testing adapter to use Playwright with Stencil
15 lines (14 loc) • 407 B
TypeScript
/**
* For internal use only.
*
* Loads and validates the project's Stencil config.
*
* @param cwd - Optional directory to start searching from. Defaults to process.cwd().
* @returns The processed Stencil config metadata.
*/
export declare const loadConfigMeta: (cwd?: string) => Promise<{
baseURL: string;
webServerUrl: string;
stencilNamespace: string;
stencilEntryPath: string;
}>;