5 lines
No EOL
182 B
TypeScript
5 lines
No EOL
182 B
TypeScript
import * as React from 'react';
|
|
/**
|
|
* Runs an effect once, when `condition` is true.
|
|
*/
|
|
export declare const useRunOnce: (condition: boolean, effect: React.EffectCallback) => void; |