motionlink-cli
Version:
Making it easy to use Notion as a Content Management system for personal websites, portfolios, blogs, business homepages, and other kinds of static websites.
20 lines (19 loc) • 411 B
TypeScript
export declare type Token = {
token: string;
};
export declare type Association = {
key: string;
value: string;
};
export declare type NotionDatabaseAssociation = {
name: string;
notionDatabaseId: string;
notionIntegrationToken: Token;
};
export declare type StringResponseBody = {
value: string;
};
export declare type ConnectResult = {
secureUrl?: string;
vars: string;
};