UNPKG

appwrite-server-wrapper

Version:

Wrapper library to handle Appwrite methods including server handling using SSR with NextJS v15 (useActionState, useAction,...)

23 lines 1.07 kB
declare const appDomain: string; declare const databaseId: string; declare const endpoint: string; declare const projectId: string; declare const apiKeySsr: string; declare const logsBucketId: string; declare const usersCollectionId: string; declare const liveEnvVarName: string; declare const port: string | number; declare const signInPath: string; declare const logsBucketName: string; declare const cookiePrefix: string; declare const oauthSuccessPath: string; declare const oauthFailurePath: string; declare const verificationPath: string; declare const cookieName: string; declare const i18nPath: string; declare const logsPath: string; declare const schemasPath: string; declare const paths: string[]; declare const envCheck: () => void; export { envCheck, apiKeySsr, appDomain, cookiePrefix, cookieName, databaseId, endpoint, i18nPath, liveEnvVarName, oauthSuccessPath, oauthFailurePath, projectId, port, paths, logsPath, schemasPath, signInPath, usersCollectionId, verificationPath, logsBucketId, logsBucketName, }; //# sourceMappingURL=appwriteConfig.d.ts.map