chore: bundle vendor code (#9016)

This PR removes the manual vendoring process. Third party code can now
be updated using the typical NPM pipeline with types/code bundling done
through Rollup.
This commit is contained in:
jrandolf
2022-09-28 13:03:19 +02:00
committed by GitHub
parent d06a905540
commit f8de7b1273
27 changed files with 322 additions and 488 deletions

View File

@@ -7,5 +7,5 @@ sidebar_label: EventType
**Signature:**
```typescript
export declare type EventType = string | symbol;
declare type EventType = string | symbol;
```

View File

@@ -7,5 +7,5 @@ sidebar_label: Handler
**Signature:**
```typescript
export declare type Handler<T = any> = (event?: T) => void;
declare type Handler<T = any> = (event?: T) => void;
```