UNPKG

@kintone/customize-uploader

Version:
15 lines (14 loc) 394 B
import type { Lang } from "../lang"; interface Params { username?: string; password?: string; oAuthToken?: string; baseUrl?: string; lang: Lang; } export declare const inquireParams: ({ username, password, baseUrl, lang, oAuthToken, }: Params) => Promise<{ username: string | undefined; password: string | undefined; baseUrl: string; }>; export * from "./init";