testplane
Version:
Tests framework based on mocha and wdio
21 lines (20 loc) • 625 B
TypeScript
export interface NormalizedDependencies {
/** Project-wide styles */
css: string[];
/** Project-wide scripts */
js: string[];
/** Module names from node_modules (e.g. "react", "@remix-run/router") */
modules: string[];
}
export declare const Compression: {
readonly NONE: "none";
readonly GZIP: "gz";
readonly BROTLI: "br";
readonly ZSTD: "zstd";
};
export type SelectivityCompressionType = (typeof Compression)[keyof typeof Compression];
export type HashFileContents = {
files: Record<string, string>;
modules: Record<string, string>;
patterns: Record<string, string>;
};