UNPKG

420 BTypeScriptView Raw
1/**
2 * Helper to invoke a domain function
3 * @type {string} name
4 * @type {object} args
5 */
6export declare function invokeDomain<T>(name: string, args?: object): Promise<T>;
7/**
8 * Helper to invoke a feed event
9 * @param {[type]} name [description]
10 * @param {[type]} args [description]
11 * @return {[type]} [description]
12 */
13export declare function invokeFeedEvent(name: string, args?: object): Promise<boolean>;