createRef.d.ts 91 B

123
  1. export declare function createRef<TValue>(initialValue: TValue): {
  2. current: TValue;
  3. };