/** * Copyright 2015 CANAL+ Group * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ /** * Construct an url from the arguments given. * Basically: * - The last arguments that contains a scheme (e.g. "http://") is the base * of the url. * - every subsequent string arguments are concatened to it. * @param {...string|undefined} args * @returns {string} */ export default function resolveURL(...args: Array): string; /** * In a given URL, find the index at which the filename begins. * That is, this function finds the index of the last `/` character and returns * the index after it, returning the length of the whole URL if no `/` was found * after the scheme (i.e. in `http://`, the slashes are not considered). * @param {string} url * @returns {number} */ declare function getFilenameIndexInUrl(url: string): number; export { getFilenameIndexInUrl };