HelperUtils: {
    assign: (dest: any, source: any) => any;
    detectSupport: () => boolean;
    mergeParams: (dest: any, source: any, replace: boolean) => void;
} = ...

Type declaration

  • assign: (dest: any, source: any) => any

    Copies all source object members to dest

    assign

  • detectSupport: () => boolean

    this method is called by the constructor. this information is useful to switch to touch mode. Detection : test for desktop or tactile

    detectSupport

  • mergeParams: (dest: any, source: any, replace: boolean) => void

    Merge two objects parameters (deeper than assign)

    mergeParams