创高项目初始化
This commit is contained in:
40
client/node_modules/@unhead/vue/dist/polyfill.d.cts
generated
vendored
Normal file
40
client/node_modules/@unhead/vue/dist/polyfill.d.cts
generated
vendored
Normal file
@@ -0,0 +1,40 @@
|
||||
import { MergeHead } from '@unhead/schema';
|
||||
import { V as VueHeadClient, U as UseHeadInput, b as UseHeadOptions } from './shared/vue.fwis0K4Q.cjs';
|
||||
import 'vue';
|
||||
|
||||
type VueHeadClientPollyFill<T extends MergeHead> = VueHeadClient<T> & {
|
||||
/**
|
||||
* @deprecated use `resolveTags`
|
||||
*/
|
||||
headTags: VueHeadClient<T>['resolveTags'];
|
||||
/**
|
||||
* @deprecated use `push`
|
||||
*/
|
||||
addEntry: VueHeadClient<T>['push'];
|
||||
/**
|
||||
* @deprecated use `push`
|
||||
*/
|
||||
addHeadObjs: VueHeadClient<T>['push'];
|
||||
/**
|
||||
* @deprecated use `useHead`
|
||||
*/
|
||||
addReactiveEntry: (input: UseHeadInput<T>, options?: UseHeadOptions) => (() => void);
|
||||
/**
|
||||
* @deprecated Use useHead API.
|
||||
*/
|
||||
removeHeadObjs: () => void;
|
||||
/**
|
||||
* @deprecated Call hook `entries:resolve` or update an entry
|
||||
*/
|
||||
updateDOM: () => void;
|
||||
/**
|
||||
* @deprecated Access unhead properties directly.
|
||||
*/
|
||||
unhead: VueHeadClient<T>;
|
||||
};
|
||||
/**
|
||||
* @deprecated Will be removed in v2.
|
||||
*/
|
||||
declare function polyfillAsVueUseHead<T extends MergeHead>(head: VueHeadClient<T>): VueHeadClientPollyFill<T>;
|
||||
|
||||
export { type VueHeadClientPollyFill, polyfillAsVueUseHead };
|
||||
Reference in New Issue
Block a user