UNPKG

wj-elements

Version:

WebJET Elements is a modern set of user interface tools harnessing the power of web components designed to simplify web application development.

26 lines (25 loc) 671 B
export function addAction(stateValueName: any): (payload2: any) => { type: string; payload: any; actionType: string; }; export function deleteAction(stateValueName: any): (payload2: any) => { type: string; payload: any; actionType: string; }; export function loadAction(stateValueName: any): (payload2: any) => { type: string; payload: any; actionType: string; }; export function updateAction(stateValueName: any): (payload2: any) => { type: string; payload: any; actionType: string; }; export function addManyAction(stateValueName: any): (payload2: any) => { type: string; payload: any; actionType: string; };