packages start...

This commit is contained in:
2023-06-03 18:07:58 +00:00
parent da1ebeced0
commit aa76aff103
21 changed files with 686 additions and 48 deletions

View File

@@ -0,0 +1,17 @@
## debug
```ts
interface DebugPackage {
/**
* dumps data to header and server log
*
* @param toDump data to dump
*/
dump(...toDump: any): void
/**
* get Sentry trace id
*/
sentryTraceId(): string
}
```