JaBa/helpers/Music/dist/utils/QueryResolver.d.ts
2022-09-10 23:38:11 +05:00

20 lines
511 B
TypeScript

import { QueryType } from "../types/types";
declare class QueryResolver {
/**
* Query resolver
*/
private constructor();
/**
* Resolves the given search query
* @param {string} query The query
* @returns {QueryType}
*/
static resolve(query: string): Promise<QueryType>;
/**
* Parses vimeo id from url
* @param {string} query The query
* @returns {string}
*/
static getVimeoID(query: string): Promise<string>;
}
export { QueryResolver };