Arthur 9d45201bf1
Improve dev experience, update docs (#117)
* feat: Add API references

* docs: Add links to API reference, add new pages

* fix: Remove src/index.ts

* fix: Update typedoc configs
2025-10-31 10:26:26 +03:00

32 lines
1.2 KiB
TypeScript

export { createApp } from './factories/createApp';
export { KottsterApp, type KottsterAppOptions } from './core/app';
export { ProcedureContext, ExtendProcedureContextFunction } from './models/procedure.model';
export {
type PartialTablePageConfig,
type TablePageConfigColumn,
type TablePageConfigCalculatedColumn,
type TablePageConfigLinkedRecordsColumn,
type TablePageConfigView,
type PartialDashboardPageConfig,
type DashboardPageConfigStat,
type DashboardPageConfigSingleStat,
type DashboardPageConfigRatioStat,
type DashboardPageConfigCard,
type DashboardPageConfigLineChartCard,
type DashboardPageConfigAreaChartCard,
type DashboardPageConfigBarChartCard,
type IdentityProviderUser,
type IdentityProviderUserWithRoles,
type TablePageGetRecordsResult,
type TablePageCustomDataFetcherInput,
type TablePageRecord,
type DashboardPageGetStatDataInput,
type DashboardPageGetStatDataResult,
type DashboardPageGetCardDataInput,
type DashboardPageGetCardDataResult,
} from '@kottster/common';
export { createIdentityProvider } from './factories/createIdentityProvider';
export { type IdentityProviderOptions, type IdentityProviderStrategyType, type PostAuthMiddleware } from './core/identityProvider';