/** * 判断是否为 HTTP 链接 * * @param {string} text * @returns {boolean} */ declare const isHTTPLink: (text: string) => boolean; export default isHTTPLink;