summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--cli/lsp/tsc.rs2
-rw-r--r--extensions/console/lib.deno_console.d.ts1
2 files changed, 1 insertions, 2 deletions
diff --git a/cli/lsp/tsc.rs b/cli/lsp/tsc.rs
index bb9311b2f..1e625aa98 100644
--- a/cli/lsp/tsc.rs
+++ b/cli/lsp/tsc.rs
@@ -3089,7 +3089,7 @@ mod tests {
assert!(result.is_ok());
let response: CompletionInfo =
serde_json::from_value(result.unwrap()).unwrap();
- assert_eq!(response.entries.len(), 20);
+ assert_eq!(response.entries.len(), 19);
let result = request(
&mut runtime,
state_snapshot,
diff --git a/extensions/console/lib.deno_console.d.ts b/extensions/console/lib.deno_console.d.ts
index d6cb1e99b..730a5da8e 100644
--- a/extensions/console/lib.deno_console.d.ts
+++ b/extensions/console/lib.deno_console.d.ts
@@ -23,7 +23,6 @@ declare interface Console {
time(label?: string): void;
timeEnd(label?: string): void;
timeLog(label?: string, ...data: any[]): void;
- timeStamp(label?: string): void;
trace(...data: any[]): void;
warn(...data: any[]): void;
}