Website Structure
This commit is contained in:
parent
62812f2090
commit
71f0676a62
22365 changed files with 4265753 additions and 791 deletions
14
Frontend-Learner/node_modules/nuxt/dist/app/composables/once.d.ts
generated
vendored
Normal file
14
Frontend-Learner/node_modules/nuxt/dist/app/composables/once.d.ts
generated
vendored
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
type CallOnceOptions = {
|
||||
mode?: 'navigation' | 'render';
|
||||
};
|
||||
/**
|
||||
* An SSR-friendly utility to call a method once
|
||||
* @param key a unique key ensuring the function can be properly de-duplicated across requests
|
||||
* @param fn a function to call
|
||||
* @param options Setup the mode, e.g. to re-execute on navigation
|
||||
* @see https://nuxt.com/docs/api/utils/call-once
|
||||
* @since 3.9.0
|
||||
*/
|
||||
export declare function callOnce(key?: string, fn?: (() => any | Promise<any>), options?: CallOnceOptions): Promise<void>;
|
||||
export declare function callOnce(fn?: (() => any | Promise<any>), options?: CallOnceOptions): Promise<void>;
|
||||
export {};
|
||||
Loading…
Add table
Add a link
Reference in a new issue