fastcomments-sdk
Version:
FastComments API Client - A SDK for interacting with the FastComments API
14 lines • 677 B
TypeScript
export * from './browser';
export * from './sso';
import { FastCommentsBrowserSDK, type FastCommentsBrowserSDKConfig } from './browser';
export interface FastCommentsServerSDKConfig extends FastCommentsBrowserSDKConfig {
apiKey?: string;
basePath?: string;
}
export declare class FastCommentsServerSDK extends FastCommentsBrowserSDK {
constructor(config?: FastCommentsServerSDKConfig);
}
export declare const FastCommentsSDK: typeof FastCommentsServerSDK;
export type FastCommentsSDKConfig = FastCommentsServerSDKConfig;
export declare function createFastCommentsSDK(config?: FastCommentsServerSDKConfig): FastCommentsServerSDK;
//# sourceMappingURL=server.d.ts.map