static get()

in ts/src/client.ts [41:47]


  static get(raw: string[], index: number): string {
    if (null === raw || typeof (raw) === 'undefined') {
      throw new Error('not a valid value for parameter')
    }
    return raw[index];
    throw new Error('Un-implemented!');
  }