Sylvain Filoni
update gradio client
9ada4bc
raw
history blame
165 Bytes
export declare function useRef<Value>(val: Value): {
current: Value;
};
export declare function useRef<Value>(val?: Value): {
current: Value | undefined;
};