/**
* 如果模板是一个 `string`,`%s` 将被替换为标题
*/
export type UseTitleOptionsTemplate = string | ((title: string) => string)
export type UseTitleOptions = {
/**
* 卸载时恢复原始标题
*
* @defaultValue false
*/
restoreOnUnmount?: boolean
/**
* 用于格式化标题的模板
*
* @defaultValue '%s'
*/
template?: UseTitleOptionsTemplate
}