UNPKG

@querc/squidex-client

Version:

NodeJS client for the [Squidex](https://squidex.io/) CMS

19 lines (18 loc) 489 B
/** * Configuration options for the Squidex Client */ export declare class SquidexClientConfiguration { /** Base URL for the Squidex API */ url?: string; /** Application name - will be inferred from `clientId` id not defined */ appName?: string; /** Client ID */ clientId: string; /** Client secret */ clientSecret: string; /** Languages to return */ languages?: string[]; /** Flatten invariants */ flatten?: boolean; foo?: boolean; }