diff options
author | 2021-06-14 19:45:51 -0700 | |
---|---|---|
committer | 2021-06-14 19:45:51 -0700 | |
commit | 7eb887edd527713214790198de3ccfe828a5768d (patch) | |
tree | d0a782385e6aeccf62b698fe5c15f1833aba3719 /src/api/schema.d.ts | |
parent | 122ef023dd642af830a5419b6172640ebf8af841 (diff) | |
download | bun-7eb887edd527713214790198de3ccfe828a5768d.tar.gz bun-7eb887edd527713214790198de3ccfe828a5768d.tar.zst bun-7eb887edd527713214790198de3ccfe828a5768d.zip |
HMR crashily works, started working on CSS Scanner
Former-commit-id: d0f91082fcc8da17d224acb5432339c5d817e1c2
Diffstat (limited to 'src/api/schema.d.ts')
-rw-r--r-- | src/api/schema.d.ts | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/api/schema.d.ts b/src/api/schema.d.ts index 902c376ff..e5370097c 100644 --- a/src/api/schema.d.ts +++ b/src/api/schema.d.ts @@ -312,8 +312,7 @@ type uint32 = number; id: uint32; from_timestamp: uint32; loader: Loader; - module_path: alphanumeric; - log: Log; + module_path: string; blob_length: uint32; } @@ -321,7 +320,7 @@ type uint32 = number; id: uint32; from_timestamp: uint32; loader: Loader; - module_path: alphanumeric; + module_path: string; log: Log; } |