@genexus/web-standard-functions
Version:
GeneXus JavaScript standard functions library for web generators
21 lines (20 loc) • 628 B
TypeScript
/**
* Makes a target visible. For example, ShowTarget("Left") opens the Drawer in an app with Slide Navigation.
* @param {string} targetName
*/
export declare const showTarget: (targetName: string) => Promise<void>;
/**
* Hides a target.
* @param {string} targetName
*/
export declare const hideTarget: (targetName: string) => Promise<void>;
/**
* Expands a target.
* @param {string} targetName
*/
export declare const expandTarget: (targetName: string) => Promise<void>;
/**
* Collapses a target.
* @param {string} targetName
*/
export declare const collapseTarget: (targetName: string) => Promise<void>;