@islamic-kit/zikr
Version:
islamic lessons, quotes, hadith, etc to share
34 lines (26 loc) • 752 B
TypeScript
/// <reference path="../../notifier/index.d.ts" />
/// <reference path="../../apps/prayer/index.d.ts" />
/// <reference path="../../common/index.d.ts" />
interface IZikrNotification extends IDatetime{
content : string
}
interface IZikrConfig {
list: IZikrNotification[]
}
declare module "@islamic-kit/zikr" {
export class ZikrNotifier {
/**
* Create prayer times notification instance
* @param config prayer times configurations
*/
constructor(config: IZikrConfig)
/**
* Configure a notification target
*/
configureTarget(target: INotificationTarget): void
/**
* Start notifier
*/
start(): void
}
}