Search


Search something to see results

ParseResultStats

Parse result stats object

interface ParseResultStats {
    bytesIn: number;
    importedBytesIn: number;
    imports: ParseResultStats[];
    minify: string;
    module?: string;
    nodesCount: number;
    parse: string;
    src: string;
    tokenize: string;
    tokensCount: number;
    total: string;
}

Index

Properties

bytesIn: number

Bytes read

importedBytesIn: number

Bytes read from imported files

imports: ParseResultStats[]

Imported files stats

minify: string

Minification processing time

module?: string

Module processing time

nodesCount: number

Nodes count

parse: string

Parsing processing time

src: string

Source file

tokenize: string

Tokenizing processing time

tokensCount: number

Tokens count

total: string

Total time