1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-25 15:29:32 -05:00

fix(console): Remove console.timeStamp from types (#10455)

Fixes #10444
This commit is contained in:
Liam Murphy 2021-05-01 20:41:38 +10:00 committed by GitHub
parent c5be20aa67
commit be287ff6a1
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 1 additions and 2 deletions

View file

@ -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,

View file

@ -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;
}