@kintone/customize-uploader
Version:
A kintone customize uploader
15 lines (14 loc) • 394 B
TypeScript
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";