UNPKG

@stencil/core

Version:

A Compiler for Web Components and Progressive Web Apps

20 lines (19 loc) 587 B
import { StencilSystem } from '../declarations'; export declare const NodeSystem: NodeSystemSystemConstructor; export interface NodeSystemSystemConstructor { new (fs: any): StencilSystem; } export declare class TestingSystem extends NodeSystem { constructor(); readonly compiler: { name: string; version: string; typescriptVersion?: string; runtime?: string; packageDir?: string; distDir?: string; }; getClientPath(staticName: string): string; getClientCoreFile(opts: any): Promise<string>; tmpdir(): string; }