mirror of
https://github.com/idanoo/GoScrobble.git
synced 2024-11-23 00:45:16 +00:00
9 lines
303 B
TypeScript
9 lines
303 B
TypeScript
|
import * as React from 'react';
|
||
|
import Cookies from 'universal-cookie';
|
||
|
import { ReactCookieProps } from './types';
|
||
|
export default class CookiesProvider extends React.Component<ReactCookieProps, any> {
|
||
|
cookies: Cookies;
|
||
|
constructor(props: ReactCookieProps);
|
||
|
render(): JSX.Element;
|
||
|
}
|