This commit is contained in:
Ken Chau 2020-10-19 14:14:38 -07:00
Родитель ec33553fbb
Коммит b97abc0c1b
2 изменённых файлов: 11 добавлений и 3 удалений

Просмотреть файл

@ -0,0 +1,8 @@
{
"type": "patch",
"comment": "make sure typing allows either prefix / customOutputPath",
"packageName": "p-profiler",
"email": "kchau@microsoft.com",
"dependentChangeType": "patch",
"date": "2020-10-19T21:14:38.490Z"
}

Просмотреть файл

@ -23,9 +23,9 @@ const getTimeBasedFilename = (prefix: string) => {
export interface ProfilerOptions {
concurrency: number;
prefix: string;
outDir: string;
customOutputPath: string;
prefix?: string;
outDir?: string;
customOutputPath?: string;
}
export default class Profiler {