Notification.d.ts 307 Bytes
Newer Older
冷佳娟's avatar
冷佳娟 committed
1 2 3 4 5 6 7 8 9 10 11 12
export declare class Notification {
    identifier: string;
    private _data?;
    constructor(payload: object);
    readonly data: any;
    readonly title: string;
    readonly body: string;
    readonly sound: string;
    readonly badge: number;
    readonly type: string;
    readonly thread: string;
}