| 58 | }; |
| 59 | |
| 60 | export interface Stats { |
| 61 | time: number; |
| 62 | builtAt: number; |
| 63 | chunks: Array<{ |
| 64 | rendered: boolean; |
| 65 | initial: boolean; |
| 66 | entry: boolean; |
| 67 | recorded: boolean; |
| 68 | size: number; |
| 69 | sizes: Record<string, number>; |
| 70 | names: string[]; |
| 71 | idHints: string[]; |
| 72 | runtime: string[]; |
| 73 | files: string[]; |
| 74 | auxiliaryFiles: string[]; |
| 75 | hash: string; |
| 76 | }>; |
| 77 | assets: Array<{ |
| 78 | type: string; |
| 79 | name: string; |
| 80 | info: { |
| 81 | size: number; |
| 82 | related: Record<string, string>; |
| 83 | }; |
| 84 | size: number; |
| 85 | emitted: boolean; |
| 86 | comparedForEmit: boolean; |
| 87 | cached: boolean; |
| 88 | chunkNames: (string | number)[]; |
| 89 | chunkIdHints: (string | number)[]; |
| 90 | auxiliaryChunkNames?: (string | number)[]; |
| 91 | auxiliaryChunks?: (string | number)[]; |
| 92 | auxiliaryChunkIdHints?: (string | number)[]; |
| 93 | filteredRelated?: number; |
| 94 | isOverSizeLimit?: boolean; |
| 95 | }>; |
| 96 | errors: Array<{ |
| 97 | message: string; |
| 98 | moduleIdentifier: string; |
| 99 | moduleName: string; |
| 100 | loc: string; |
| 101 | }>; |
| 102 | warnings: Array<{ |
| 103 | message: string; |
| 104 | moduleIdentifier: string; |
| 105 | moduleName: string; |
| 106 | loc: string; |
| 107 | }>; |
| 108 | } |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…