/** * A higher order function that wraps `func` to guarantee it is only ever * called once. * * @param func The function to only call once. * @returns A version of `func` that only performs the logic once. */ export declare function once(func: (...args: any[]) => T): (...args: any[]) => T; //# sourceMappingURL=index.d.ts.map