Fix typescript syntax errors

Remove unwanted `:` and fix the naming of the boolean type.
This commit is contained in:
Wilfred Hughes 2021-09-15 17:53:36 -07:00 committed by GitHub
parent 959c7ef563
commit e543fe855b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -585,10 +585,10 @@ interface Crate {
target?: string;
/// Environment variables, used for
/// the `env!` macro
env: : { [key: string]: string; },
env: { [key: string]: string; },
/// Whether the crate is a proc-macro crate.
is_proc_macro: bool;
is_proc_macro: boolean;
/// For proc-macro crates, path to compiled
/// proc-macro (.so file).
proc_macro_dylib_path?: string;