Adhere to rules

This commit is contained in:
Paito Anderson
2017-11-15 10:30:01 -05:00
parent 5554593568
commit aaab1da998

View File

@@ -4,86 +4,86 @@
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
// TypeScript Version: 2.3
declare module "react-native-push-notification" {
interface PushNotificationPermissions {
alert?: boolean
badge?: boolean
sound?: boolean
}
interface IPushNotification {
foreground: boolean;
userInteraction: boolean;
message: string|Object;
data: Object;
badge: number;
alert: Object;
sound: string;
}
export class PushNotificationOptions {
onRegister?: (token: { os: string, token: string }) => void;
onNotification?: (notification: IPushNotification) => void;
senderID?: string;
popInitialNotification?: boolean;
requestPermissions?: boolean;
}
export type RepeatType = 'week' | 'day' | 'hour' | 'minute' | 'time';
export class PushNotificationObject {
/* Android only properties */
id?: string;
ticker?: string;
autoCancel?: boolean;
largeIcon?: string;
smallIcon?: string;
bigText?: string;
subText?: string;
color?: string;
vibrate?: boolean;
vibration?: number;
tag?: string;
group?: string;
ongoing?: boolean;
/* iOS only properties */
alertAction?: any;
category?: any;
userInfo?: any;
/* iOS and Android properties */
title?: string;
message: string;
playSound?: boolean;
soundName?: string;
number?: string;
repeatType?: RepeatType;
actions?: string;
}
export class PushNotificationScheduleObject extends PushNotificationObject {
Date: Date;
}
export default class PushNotification {
static configure(options: PushNotificationOptions): void;
static unregister(): void;
static localNotification(details: PushNotificationObject): void;
static localNotificationSchedule(details: PushNotificationScheduleObject): void;
static requestPermissions(): void;
static presentLocalNotification(details: PushNotificationObject): void;
static scheduleLocalNotification(details: PushNotificationScheduleObject): void;
static cancelLocalNotifications(details: object): void;
static cancelAllLocalNotifications(): void;
static setApplicationIconBadgeNumber(badgeCount: number): void;
static getApplicationIconBadgeNumber(callback: (badgeCount: number) => void): void
static popInitialNotification(): Promise<IPushNotification>;
static abandonPermissions(): void;
static checkPermissions(callback: (permissions: PushNotificationPermissions) => void): void
static registerNotificationActions(actions: string[]): void;
static clearAllNotifications(): void;
}
export interface PushNotificationPermissions {
alert?: boolean;
badge?: boolean;
sound?: boolean;
}
export interface PushNotification {
foreground: boolean;
userInteraction: boolean;
message: string|object;
data: object;
badge: number;
alert: object;
sound: string;
}
export class PushNotificationOptions {
onRegister?: (token: { os: string, token: string }) => void;
onNotification?: (notification: PushNotification) => void;
senderID?: string;
popInitialNotification?: boolean;
requestPermissions?: boolean;
}
export type RepeatType = 'week' | 'day' | 'hour' | 'minute' | 'time';
export class PushNotificationObject {
/* Android only properties */
id?: string;
ticker?: string;
autoCancel?: boolean;
largeIcon?: string;
smallIcon?: string;
bigText?: string;
subText?: string;
color?: string;
vibrate?: boolean;
vibration?: number;
tag?: string;
group?: string;
ongoing?: boolean;
/* iOS only properties */
alertAction?: any;
category?: any;
userInfo?: any;
/* iOS and Android properties */
title?: string;
message: string;
playSound?: boolean;
soundName?: string;
number?: string;
repeatType?: RepeatType;
actions?: string;
}
export class PushNotificationScheduleObject extends PushNotificationObject {
Date: Date;
}
export interface PushNotification {
configure(options: PushNotificationOptions): void;
unregister(): void;
localNotification(details: PushNotificationObject): void;
localNotificationSchedule(details: PushNotificationScheduleObject): void;
requestPermissions(): void;
presentLocalNotification(details: PushNotificationObject): void;
scheduleLocalNotification(details: PushNotificationScheduleObject): void;
cancelLocalNotifications(details: object): void;
cancelAllLocalNotifications(): void;
setApplicationIconBadgeNumber(badgeCount: number): void;
getApplicationIconBadgeNumber(callback: (badgeCount: number) => void): void;
popInitialNotification(): Promise<PushNotification>;
abandonPermissions(): void;
checkPermissions(callback: (permissions: PushNotificationPermissions) => void): void;
registerNotificationActions(actions: string[]): void;
clearAllNotifications(): void;
}
declare const PushNotification: PushNotification;
export default PushNotification;