miso-npm-publish-test
Version:
A library for easily sending push notifications to LINE Bot
8 lines (7 loc) • 338 B
TypeScript
import type { ConstructorOption, RemainingQuota, PushOptions } from "../types/types.js";
export declare class LineBotNotify {
private _linePushApi;
constructor(constructorOption: ConstructorOption);
getRemainingQuota(): Promise<RemainingQuota>;
push(message: string, pushOptions?: PushOptions): Promise<RemainingQuota>;
}