15 lines
565 B
TypeScript
15 lines
565 B
TypeScript
/**
|
|
* @clawd/auth-runtime
|
|
*
|
|
* Shared auth runtime for OpenClaw skills.
|
|
*
|
|
* Primary API — just use the client:
|
|
*
|
|
* import { createSkillClient } from '@clawd/auth-runtime';
|
|
* const client = createSkillClient();
|
|
* const res = await client.post('/ecom/tasks/scrape', payload);
|
|
*/
|
|
export { createSkillClient, SkillClient } from './client.js';
|
|
export type { SkillClientOptions } from './client.js';
|
|
export type { EnvConfig, SessionResponse, ClientConfig, CachedTokenData, ApiResponse, HttpMethod, } from './types.js';
|
|
//# sourceMappingURL=index.d.ts.map
|