0.0.2-alpha.0 • Published 8 months ago

@reminix/core v0.0.2-alpha.0

Weekly downloads
-
License
-
Repository
-
Last release
8 months ago

@reminix/core

Core package for the Reminix TypeScript SDK. This package provides the base client and type definitions.

Installation

npm install @reminix/core
# or
yarn add @reminix/core
# or
pnpm add @reminix/core

Usage

import { ReminixClient, ReminixConfig } from '@reminix/core';

// Initialize the client
const client = new ReminixClient({
  apiKey: 'your-api-key'
});

// Get the API key
const apiKey = client.getApiKey();

Configuration

The ReminixConfig interface supports the following options:

interface ReminixConfig {
  apiKey: string;
  baseUrl?: string; // Optional, defaults to https://api.reminix.ai
}

Documentation

Coming soon...

0.0.2-alpha.0

8 months ago