UNPKG

macro_api

Version:

A comprehensive, production-ready API toolkit for various services including Stripe, Slack, SendGrid, Vercel, AWS S3, Docker Hub, and more.

15 lines (14 loc) 272 B
/** * Authentication options for the Notion API */ export default interface NotionAuthOptions { /** * Notion API Key for authentication */ apiKey: string; /** * Notion API version * (default: "2022-06-28") */ version?: string; }