@stencil/core
Version:
A Compiler for Web Components and Progressive Web Apps
17 lines (16 loc) • 347 B
TypeScript
import * as d from '.';
export interface AssetsMeta {
absolutePath: string;
cmpRelativePath: string;
originalComponentPath: string;
}
export interface CopyTask {
src: string;
dest?: string;
warn?: boolean;
}
export interface CopyResults {
diagnostics: d.Diagnostic[];
filePaths: string[];
dirPaths: string[];
}