UNPKG

426 BTypeScriptView Raw
1import { AkteApp, type Config } from "./AkteApp";
2/**
3 * Creates an Akte app from given configuration.
4 *
5 * @typeParam TGlobalData - Global data type the app should be configured with
6 * (inferred by default)
7 * @param config - Configuration to create the Akte app with.
8 * @returns The created Akte app.
9 */
10export declare const defineAkteApp: <TGlobalData>(config: Config<TGlobalData>) => AkteApp<TGlobalData>;