@kintone/dts-gen
Version:
Types for kintone js api and Types generating tools
10 lines (9 loc) • 320 B
TypeScript
import type { FieldTypeGroups } from "../converters/fileldtype-converter";
export interface RenderInput {
typeName: string;
namespace: string;
fieldTypeGroups: FieldTypeGroups;
}
export declare const TypeDefinitionTemplate: {
renderAsFile: (output: string, renderInput: RenderInput) => Promise<void>;
};