11 lines
327 B
TypeScript
11 lines
327 B
TypeScript
/**
|
|
Decode changes from a JS API to a output object.
|
|
Only the configuration can be edited by plugin's hooks
|
|
|
|
@param {Output} output
|
|
@param {Object} result: result from API
|
|
@return {Output}
|
|
*/
|
|
declare function decodeGlobal(output: any, result: any): any;
|
|
export { decodeGlobal };
|
|
//# sourceMappingURL=decodeGlobal.d.ts.map
|