Fix jsdoc
This commit is contained in:
parent
296336535f
commit
53794ec180
1 changed files with 1 additions and 1 deletions
|
@ -7,7 +7,7 @@ import { makeLazy } from "./misc";
|
||||||
* @returns Proxy
|
* @returns Proxy
|
||||||
*
|
*
|
||||||
* Note that the example below exists already as an api, see {@link lazyWebpack}
|
* Note that the example below exists already as an api, see {@link lazyWebpack}
|
||||||
* @example const mod = proxyLazy(makeLazy(() => findByProps("blah"))); console.log(mod.blah);
|
* @example const mod = proxyLazy(() => findByProps("blah")); console.log(mod.blah);
|
||||||
*/
|
*/
|
||||||
export function proxyLazy<T>(factory: () => T): T {
|
export function proxyLazy<T>(factory: () => T): T {
|
||||||
const lazy = makeLazy(factory);
|
const lazy = makeLazy(factory);
|
||||||
|
|
Loading…
Reference in a new issue