UNPKG

wdpapi

Version:

51WORLD WdpApi is a set of programming interfaces developed by JavaScript that is responsible for negotiating between web pages and cloud rendering platforms. Supported by 51Cloud rendering platform, it enables the users to create any HTML5 UI element on

17 lines (16 loc) 664 B
/** * @public * @function generateGetterSetter * @param {Record<string, any>} objectData * @param {Record<string, any>} obj * @param {Array<string>} lowerCases // No need to handle capitalization * @param {Array<string>} excludes // excludes array (Do not handle generation) * @param {Array<Iconvert>} converts // Convert attribute name * @param {string} style (optional) */ interface Iconvert { name: string; newName: string; } export declare const generateGetterSetter: (objectData: Record<string, any>, obj: Record<string, any>, lowerCases: Array<string>, excludes: Array<string>, converts: Array<Iconvert>, style?: string) => void; export {};