export type UseFaviconOptions = {
/**
* favicon 的基础 URL
*
* @defaultValue ''
*/
baseUrl?: string
/**
* favicon 链接元素的 rel 属性
*
* @defaultValue 'icon'
*/
rel?: string
/**
* 在挂载时同步 document `<link rel='icon' />` 中的 favicon 到 hooks 状态
*
* @defaultValue true
*/
syncOnMount?: boolean
/**
* 在卸载时恢复到之前的 favicon
*
* @defaultValue false
*/
restoreOnUnmount?: boolean
}