Add packages to optimize svgs dynamically

These packages will be used to dynamically optimize SVG images
during the build.

R=jacktfranklin@chromium.org

Bug: 1216402
Change-Id: I04e95aa7d79c9d67beaf8a7861182c52b16b7d0f
Reviewed-on: https://chromium-review.googlesource.com/c/devtools/devtools-frontend/+/2939992
Reviewed-by: Jack Franklin <jacktfranklin@chromium.org>
Commit-Queue: Tim van der Lippe <tvanderlippe@chromium.org>
diff --git a/node_modules/css-select/lib/compile.d.ts b/node_modules/css-select/lib/compile.d.ts
new file mode 100644
index 0000000..4658b61
--- /dev/null
+++ b/node_modules/css-select/lib/compile.d.ts
@@ -0,0 +1,13 @@
+import { InternalSelector } from "./types";
+import type { CompiledQuery, InternalOptions } from "./types";
+/**
+ * Compiles a selector to an executable function.
+ *
+ * @param selector Selector to compile.
+ * @param options Compilation options.
+ * @param context Optional context for the selector.
+ */
+export declare function compile<Node, ElementNode extends Node>(selector: string, options: InternalOptions<Node, ElementNode>, context?: ElementNode[]): CompiledQuery<ElementNode>;
+export declare function compileUnsafe<Node, ElementNode extends Node>(selector: string, options: InternalOptions<Node, ElementNode>, context?: ElementNode[] | ElementNode): CompiledQuery<ElementNode>;
+export declare function compileToken<Node, ElementNode extends Node>(token: InternalSelector[][], options: InternalOptions<Node, ElementNode>, context?: ElementNode[] | ElementNode): CompiledQuery<ElementNode>;
+//# sourceMappingURL=compile.d.ts.map
\ No newline at end of file