/
githubmirror
/
hexo
Обзор
Документация
Войти
/
githubmirror
/
hexo
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
lib/plugins/helper/url_for.ts
10 строк
250 B
D-Sketon
refactor: refactor types (#5398)
23 янв 2024, 08:57
Не верифицирован
23 янв 2024, 08:57
ee4bc8e
Код
Авторство
О чём код?
import { url_for } from 'hexo-util'; import type { LocalsType } from '../../types'; interface Options { relative?: boolean } export = function(this: LocalsType, path: string, options: Options = {}) { return url_for.call(this, path, options); }