From 4a668c321d43dabd90e886c4cfa1d7e60d50c141 Mon Sep 17 00:00:00 2001 From: Anders Hejlsberg Date: Wed, 17 Jul 2024 08:20:03 -0700 Subject: [PATCH] Accept new baselines --- tests/baselines/reference/stringRawType.types | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tests/baselines/reference/stringRawType.types b/tests/baselines/reference/stringRawType.types index b29e37ccaa6..739d3b12754 100644 --- a/tests/baselines/reference/stringRawType.types +++ b/tests/baselines/reference/stringRawType.types @@ -4,12 +4,12 @@ String.raw({ raw: ["foo", "bar", "baz"] }, 1, 2); >String.raw({ raw: ["foo", "bar", "baz"] }, 1, 2) : string > : ^^^^^^ ->String.raw : (template: { raw: readonly string[] | ArrayLike; }, ...substitutions: any[]) => string -> : ^ ^^ ^^^^^ ^^ ^^^^^ +>String.raw : (template: { readonly raw: readonly string[] | ArrayLike; }, ...substitutions: any[]) => string +> : ^ ^^ ^^^^^ ^^ ^^^^^ >String : StringConstructor > : ^^^^^^^^^^^^^^^^^ ->raw : (template: { raw: readonly string[] | ArrayLike; }, ...substitutions: any[]) => string -> : ^ ^^ ^^^^^ ^^ ^^^^^ +>raw : (template: { readonly raw: readonly string[] | ArrayLike; }, ...substitutions: any[]) => string +> : ^ ^^ ^^^^^ ^^ ^^^^^ >{ raw: ["foo", "bar", "baz"] } : { raw: string[]; } > : ^^^^^^^^^^^^^^^^^^ >raw : string[]