mirror of
https://github.com/Mastermindzh/react-cookie-consent.git
synced 2025-01-20 18:41:44 +01:00
prettified the typescript definition file (using prettier)
This commit is contained in:
parent
04c553fded
commit
1822d9ad83
42
src/index.d.ts
vendored
42
src/index.d.ts
vendored
@ -1,27 +1,27 @@
|
||||
import * as React from 'react';
|
||||
import * as React from "react";
|
||||
import Cookies from "js-cookie";
|
||||
|
||||
export interface CookieConsentProps {
|
||||
location?: "top" | "bottom" | "none",
|
||||
style?: object,
|
||||
buttonStyle?: object,
|
||||
contentStyle?: object,
|
||||
children?: React.ReactNode,
|
||||
disableStyles?: boolean,
|
||||
hideOnAccept?: boolean,
|
||||
onAccept?: Function,
|
||||
buttonText?: Function | React.ReactNode,
|
||||
cookieName?: string,
|
||||
cookieValue?: string | boolean | number,
|
||||
debug?: boolean,
|
||||
expires?: number,
|
||||
containerClasses?: string,
|
||||
contentClasses?: string,
|
||||
buttonClasses?: string,
|
||||
buttonId?: string,
|
||||
acceptOnScroll?: boolean,
|
||||
acceptOnScrollPercentage?: number,
|
||||
extraCookieOptions?: object
|
||||
location?: "top" | "bottom" | "none";
|
||||
style?: object;
|
||||
buttonStyle?: object;
|
||||
contentStyle?: object;
|
||||
children?: React.ReactNode;
|
||||
disableStyles?: boolean;
|
||||
hideOnAccept?: boolean;
|
||||
onAccept?: Function;
|
||||
buttonText?: Function | React.ReactNode;
|
||||
cookieName?: string;
|
||||
cookieValue?: string | boolean | number;
|
||||
debug?: boolean;
|
||||
expires?: number;
|
||||
containerClasses?: string;
|
||||
contentClasses?: string;
|
||||
buttonClasses?: string;
|
||||
buttonId?: string;
|
||||
acceptOnScroll?: boolean;
|
||||
acceptOnScrollPercentage?: number;
|
||||
extraCookieOptions?: object;
|
||||
}
|
||||
|
||||
export default class CookieConsent extends React.Component<CookieConsentProps, {}> {}
|
||||
|
Loading…
Reference in New Issue
Block a user