Add telemetry for TRAP caching

This commit is contained in:
Edoardo Pirovano 2022-08-15 14:44:43 +01:00
parent ca10a6d552
commit 4139682b64
No known key found for this signature in database
GPG key ID: 047556B5D93FFE28
63 changed files with 1195 additions and 126 deletions

21
node_modules/@types/get-folder-size/LICENSE generated vendored Normal file
View file

@ -0,0 +1,21 @@
MIT License
Copyright (c) Microsoft Corporation. All rights reserved.
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE

16
node_modules/@types/get-folder-size/README.md generated vendored Normal file
View file

@ -0,0 +1,16 @@
# Installation
> `npm install --save @types/get-folder-size`
# Summary
This package contains type definitions for get-folder-size (https://github.com/alessioalex/get-folder-size).
# Details
Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/get-folder-size
Additional Details
* Last updated: Fri, 06 Jul 2018 00:07:02 GMT
* Dependencies: none
* Global values: none
# Credits
These definitions were written by Mariusz Szczepańczyk <https://github.com/mszczepanczyk>.

9
node_modules/@types/get-folder-size/index.d.ts generated vendored Normal file
View file

@ -0,0 +1,9 @@
// Type definitions for get-folder-size 2.0
// Project: https://github.com/alessioalex/get-folder-size
// Definitions by: Mariusz Szczepańczyk <https://github.com/mszczepanczyk>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
export = getFolderSize;
declare function getFolderSize(folder: string, callback: (err: Error | null, size: number) => void): void;
declare function getFolderSize(folder: string, regexIgnorePattern: RegExp, callback: (err: Error | null, size: number) => void): void;

22
node_modules/@types/get-folder-size/package.json generated vendored Normal file
View file

@ -0,0 +1,22 @@
{
"name": "@types/get-folder-size",
"version": "2.0.0",
"description": "TypeScript definitions for get-folder-size",
"license": "MIT",
"contributors": [
{
"name": "Mariusz Szczepańczyk",
"url": "https://github.com/mszczepanczyk",
"githubUsername": "mszczepanczyk"
}
],
"main": "",
"repository": {
"type": "git",
"url": "https://github.com/DefinitelyTyped/DefinitelyTyped.git"
},
"scripts": {},
"dependencies": {},
"typesPublisherContentHash": "40dcdde6847f0332ef276f2d429f348945a3e481fb5cda7a3a89caf204b6f4f0",
"typeScriptVersion": "2.0"
}