Built motion from commit 6a09e18b.|2.6.11
[motion2.git] / legacy-libs / grpc-cloned / node_modules / @protobufjs / path / index.d.ts
diff --git a/legacy-libs/grpc-cloned/node_modules/@protobufjs/path/index.d.ts b/legacy-libs/grpc-cloned/node_modules/@protobufjs/path/index.d.ts
new file mode 100644 (file)
index 0000000..567c3dc
--- /dev/null
@@ -0,0 +1,22 @@
+/**\r
+ * Tests if the specified path is absolute.\r
+ * @param {string} path Path to test\r
+ * @returns {boolean} `true` if path is absolute\r
+ */\r
+export function isAbsolute(path: string): boolean;\r
+\r
+/**\r
+ * Normalizes the specified path.\r
+ * @param {string} path Path to normalize\r
+ * @returns {string} Normalized path\r
+ */\r
+export function normalize(path: string): string;\r
+\r
+/**\r
+ * Resolves the specified include path against the specified origin path.\r
+ * @param {string} originPath Path to the origin file\r
+ * @param {string} includePath Include path relative to origin path\r
+ * @param {boolean} [alreadyNormalized=false] `true` if both paths are already known to be normalized\r
+ * @returns {string} Path to the include file\r
+ */\r
+export function resolve(originPath: string, includePath: string, alreadyNormalized?: boolean): string;\r