We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
messagingApi
It would be nice if I could import like this
import { MessagingApiClient } from '@line/bot-sdk/messagingApi';
Currently, these are the import options
// ES modules or TypeScript import { messagingApi } from '@line/bot-sdk'; const { MessagingApiClient } = messagingApi; // OR import * as line from '@line/bot-sdk'; const { MessagingApiClient } = line.messagingApi; // CommonJS const MessagingApiClient = require('@line/bot-sdk').messagingApi.MessagingApiClient;
The text was updated successfully, but these errors were encountered:
mokuzon
No branches or pull requests
It would be nice if I could import like this
Currently, these are the import options
The text was updated successfully, but these errors were encountered: