zhizhi/node_modules/dingtalk-jsapi/api/union/getSystemSettings.d.ts

23 lines
617 B
TypeScript
Raw Normal View History

import { ICommonAPIParams } from '../../constant/types';
/**
*
* @apiName getSystemSettings
*/
export interface IUnionGetSystemSettingsParams extends ICommonAPIParams {
data: string;
param: string;
action: string;
}
/**
*
* @apiName getSystemSettings
*/
export interface IUnionGetSystemSettingsResult {
}
/**
*
* @apiName getSystemSettings
*/
export declare function getSystemSettings$(params: IUnionGetSystemSettingsParams): Promise<IUnionGetSystemSettingsResult>;
export default getSystemSettings$;