<br />
<b>Warning</b>:  Undefined variable $auth in <b>/home/pevo0181/public_html/pia-soft.com/cleania/routes/index.php</b> on line <b>542</b><br />
<br />
<b>Warning</b>:  Trying to access array offset on value of type null in <b>/home/pevo0181/public_html/pia-soft.com/cleania/routes/index.php</b> on line <b>542</b><br />
declare class Denque<T = any> {
  length: number;

  constructor();

  constructor(array: T[]);

  constructor(array: T[], options: IDenqueOptions);

  push(item: T): number;

  unshift(item: T): number;

  pop(): T | undefined;

  shift(): T | undefined;

  peekBack(): T | undefined;

  peekFront(): T | undefined;

  peekAt(index: number): T | undefined;

  get(index: number): T | undefined;

  remove