@stencil/core
Version:
A Compiler for Web Components and Progressive Web Apps
19 lines (18 loc) • 416 B
TypeScript
import * as d from '.';
export interface TranspileResults {
sourceFilePath: string;
code: string;
map: any;
diagnostics: d.Diagnostic[];
moduleFile: d.Module;
build: d.Build;
}
export interface ValidateTypesResults {
diagnostics: d.Diagnostic[];
dirPaths: string[];
filePaths: string[];
}
export interface TransformOptions {
addCompilerMeta: boolean;
addStyle: boolean;
}