/** * https://github.com/alexreardon/raf-schd * * Copyright (c) 2021 Alex Reardon * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ type AnyFn = (...args: any[]) => void; export interface RafSchedule { (...args: Parameters): void; cancel: () => void; } export declare const rafSchd: (fn: T) => RafSchedule; export {}; //# sourceMappingURL=rafSchd.d.ts.map